X-Git-Url: http://www.average.org/gitweb/?a=blobdiff_plain;f=msp430%2FPulsecounter-Prog.c;h=1d31b75fb8c333ec09ab5be18a466cad06dce681;hb=61da112497ec35ae85641a250b06b1b08e3b55c3;hp=ced5632fa253abca6f0cf3b09e1e998b960bbc87;hpb=02d2dc9e46149beb63a3dac83a9346232e2626da;p=pulsecounter.git diff --git a/msp430/Pulsecounter-Prog.c b/msp430/Pulsecounter-Prog.c index ced5632..1d31b75 100644 --- a/msp430/Pulsecounter-Prog.c +++ b/msp430/Pulsecounter-Prog.c @@ -2,84 +2,81 @@ #include "Hal.h" static void gpioHandler(uint8_t id); -static void tickHandler(void); +static void jitterHandler(uint8_t id, uint32_t count); static int32_t cold = 0; static int32_t hot = 0; +static int32_t coldJ = 0; +static int32_t hotJ = 0; static bool connected = false; -static bool updatable = false; void main() { Hal_init(); - Hal_gpioEnable(gpioHandler); + Hal_gpioEnable(gpioHandler, jitterHandler); Pulsecounter_setDeviceName("PULS-CNTR"); Pulsecounter_start(); Hal_idleLoop(); } -static void gpioHandler(uint8_t id) { +static void blink(uint8_t which, uint8_t count) { uint8_t i; + for (i = 0; i < count; i++) { + if (i) Hal_delay(10); + if (which & 1) Hal_greenLedOn(); + if (which & 2) Hal_redLedOn(); + Hal_delay(10); + if (which & 1) Hal_greenLedOff(); + if (which & 2) Hal_redLedOff(); + } +} +static void gpioHandler(uint8_t id) { switch (id) { case 0: /* Pulsecounter_accept(true); */ - updatable = true; if (connected) { Pulsecounter_coldTick_indicate(); Hal_delay(100); Pulsecounter_hotTick_indicate(); } - Hal_greenLedOn(); - Hal_redLedOn(); - Hal_delay(10); - Hal_greenLedOff(); - Hal_redLedOff(); - Hal_tickStart(15000, tickHandler); + blink(3, 2); break; case 1: cold++; if (connected) Pulsecounter_coldTick_indicate(); - Hal_greenLedOn(); - Hal_delay(10); - Hal_greenLedOff(); + blink(1, 2); break; case 2: hot++; if (connected) Pulsecounter_hotTick_indicate(); - Hal_redLedOn(); - Hal_delay(10); - Hal_redLedOff(); + blink(2, 2); break; default: - for (i = 0; i < 5; i++) { - Hal_greenLedOn(); - Hal_redLedOn(); - Hal_delay(10); - Hal_greenLedOff(); - Hal_redLedOff(); - Hal_delay(10); - } + blink(3, 15); } } -static void tickHandler(void) { - uint8_t i; - - Hal_tickStop(); - if (connected) - return; - for (i = 0; i < 3; i++) { - Hal_greenLedOn(); - Hal_delay(50); - Hal_redLedOn(); - Hal_delay(50); - Hal_redLedOff(); - Hal_delay(50); - Hal_greenLedOff(); +static void jitterHandler(uint8_t id, uint32_t count) { + switch (id) { + case 0: + blink(3, count); + break; + case 1: + coldJ = count; + if (connected) + Pulsecounter_coldJitter_indicate(); + blink(1, 1); + break; + case 2: + hotJ = count; + if (connected) + Pulsecounter_hotJitter_indicate(); + blink(2, 1); + break; + default: + blink(3, 13); } - updatable = false; - /* Pulsecounter_accept(false); */ } /* -------- SCHEMA CALLBACKS -------- */ @@ -98,7 +95,6 @@ void Pulsecounter_connectHandler(void) { void Pulsecounter_disconnectHandler(void) { connected = false; - updatable = false; Hal_greenLedOn(); Hal_delay(100); Hal_greenLedOff(); @@ -117,26 +113,10 @@ void Pulsecounter_hotTick_fetch(Pulsecounter_hotTick_t* const output) { *output = hot; } -void Pulsecounter_coldSet_store(Pulsecounter_coldSet_t* const input) { - Hal_greenLedOn(); - Hal_delay(100); - Hal_greenLedOff(); - Hal_delay(100); - Hal_greenLedOn(); - Hal_delay(100); - Hal_greenLedOff(); - // if (updatable) - cold = *input; +void Pulsecounter_coldJitter_fetch(Pulsecounter_coldJitter_t* output) { + *output = coldJ; } -void Pulsecounter_hotSet_store(Pulsecounter_hotSet_t* const input) { - Hal_redLedOn(); - Hal_delay(100); - Hal_redLedOff(); - Hal_delay(100); - Hal_redLedOn(); - Hal_delay(100); - Hal_redLedOff(); - // if (updatable) - hot = *input; +void Pulsecounter_hotJitter_fetch(Pulsecounter_hotJitter_t* output) { + *output = hotJ; }