From 0f390b743634ef4cdda03da8cb3f175524d59bd0 Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Sun, 3 Jul 2011 15:34:29 +0200 Subject: Removed old stuff. --- ppmsum.cpp | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 ppmsum.cpp (limited to 'ppmsum.cpp') diff --git a/ppmsum.cpp b/ppmsum.cpp deleted file mode 100644 index ce601e5..0000000 --- a/ppmsum.cpp +++ /dev/null @@ -1,39 +0,0 @@ -#include "ppmsum.h" - -#include -#include - -namespace { - icucnt_t last_width, last_period; - - PPMSum* ppmsum; - int ppm_n = 0; - - static void icuwidthcb(ICUDriver *icup) { - last_width = icuGetWidthI(icup); - ppmsum->data[ppm_n] = last_width - 1050; - } - - static void icuperiodcb(ICUDriver *icup) { - last_period = icuGetPeriodI(icup); - if(last_period > 5000) { - ppm_n = 0; - } else { - ppm_n = (ppm_n + 1) % 4; - } - } - - static ICUConfig icucfg = { - ICU_INPUT_ACTIVE_HIGH, - 1000000, - icuwidthcb, - icuperiodcb - }; -}; - -void PPMSum::start() { - ppmsum = this; - - icuStart(&ICUD4, &icucfg); - icuEnable(&ICUD4); -} -- cgit v1.2.3