]> www.fi.muni.cz Git - heater.git/commitdiff
short and long button presses
authorJan "Yenya" Kasprzak <kas@fi.muni.cz>
Fri, 31 Jan 2014 13:23:04 +0000 (14:23 +0100)
committerJan "Yenya" Kasprzak <kas@fi.muni.cz>
Fri, 31 Jan 2014 13:23:04 +0000 (14:23 +0100)
firmware/main.c

index edbbf0a959ca5edc91b39b9ab0270e32d9e33f56..5c9a566ffc0ea20afb54abefc0330cd0795f2a7e 100644 (file)
@@ -27,7 +27,7 @@
  * When running, the "-" button is used for decreasing the output power,
  * the "+" button is for increasing it.
  * When on the lowest power state, the "-" button switches the system off.
  * When running, the "-" button is used for decreasing the output power,
  * the "+" button is for increasing it.
  * When on the lowest power state, the "-" button switches the system off.
- * TODO: Long "-" button press switches the system off, long "+" button
+ * Long "-" button press switches the system off, long "+" button
  * press sets the output power to maximum.
  *
  * Status LED:
  * press sets the output power to maximum.
  *
  * Status LED:
 #define WAKEUP_LIMIT 5 // times WAKEUP_POLL
 
 /* output power levels */
 #define WAKEUP_LIMIT 5 // times WAKEUP_POLL
 
 /* output power levels */
-#define N_STEPS 5
-static unsigned char steps[] = { 60, 85, 121, 171, 242 };
-static unsigned char intensity = 0; // selected power level
+#define N_POWER_LEVELS 5
+static unsigned char power_levels[N_POWER_LEVELS] = {
+
+};
+
+static unsigned char power_level = 0; // selected power level
 
 /* which state (output on or output off) are we measuring now */
 static volatile unsigned char adc_type, adc_drop;
 
 /* which state (output on or output off) are we measuring now */
 static volatile unsigned char adc_type, adc_drop;
@@ -89,6 +92,10 @@ static unsigned char batt_levels[BATT_N_LEVELS] = {
 /* timing by WDT */
 static volatile unsigned char jiffies, next_clock_tick;
 
 /* timing by WDT */
 static volatile unsigned char jiffies, next_clock_tick;
 
+/* button press duration (in jiffies) */
+#define BUTTON_SHORT_MIN       1
+#define BUTTON_LONG_MIN                10
+
 /* ========= Analog to Digital Converter (battery voltage) ========== */
 static void adc_init()
 {
 /* ========= Analog to Digital Converter (battery voltage) ========== */
 static void adc_init()
 {
@@ -317,19 +324,27 @@ static void power_down()
 }
 
 /* ======== Button press detection and  handling ===================== */
 }
 
 /* ======== Button press detection and  handling ===================== */
-static void button_one_pressed()
-{
-       if (intensity > 0) {
-               pwm_set(steps[--intensity]);
-       } else {
-               power_down();
-       }
-}
-
-static void button_two_pressed()
+static void button_pressed(unsigned char button, unsigned char long_press)
 {
 {
-       if (intensity < N_STEPS-1) {
-               pwm_set(steps[++intensity]);
+       // ignore simlultaneous button 1 and 2 press
+       if (long_press) {
+               if (button == 1) {
+                       power_down();
+               } else if (button == 2) {
+                       power_level = N_POWER_LEVELS-1;
+               }
+       } else { // short press
+               if (button == 1) {
+                       if (power_level > 0) {
+                               --power_level;
+                       } else {
+                               power_down();
+                       }
+               } else if (button == 2) {
+                       if (power_level < N_POWER_LEVELS-1) {
+                               ++power_level;
+                       }
+               }
        }
 }
 
        }
 }
 
@@ -340,8 +355,12 @@ static void timer_check_buttons()
        unsigned char newstate = buttons_pressed();
 
        if (newstate == button_state) {
        unsigned char newstate = buttons_pressed();
 
        if (newstate == button_state) {
-               if (newstate && button_state_time < 4)
+               if (newstate && button_state_time < BUTTON_LONG_MIN)
                        ++button_state_time;
                        ++button_state_time;
+
+               if (newstate && button_state_time >= BUTTON_LONG_MIN) {
+                       status_led_on();
+               }
                return;
        }
 
                return;
        }
 
@@ -352,16 +371,12 @@ static void timer_check_buttons()
        }
 
        // just released
        }
 
        // just released
-       switch (button_state) {
-       case 1: button_one_pressed();
-               break;
-       case 2: button_two_pressed();
-               break;
-       default: // ignore when both are preseed
-               break;
-       }
+       if (button_state_time >= BUTTON_SHORT_MIN)
+               button_pressed(button_state,
+                       button_state_time >= BUTTON_LONG_MIN ? 1 : 0);
 
        button_state = newstate;
 
        button_state = newstate;
+       button_state_time = 0;
 }
 
 /* ============ Status LED blinking =================================== */
 }
 
 /* ============ Status LED blinking =================================== */
@@ -387,8 +402,8 @@ static void status_led_next_pattern()
 {
 
        // for now, display the selected intensity
 {
 
        // for now, display the selected intensity
-       // n_blinks = intensity + 1;
-       n_blinks = battery_level() + 1;
+       n_blinks = power_level + 1;
+       // n_blinks = battery_level() + 1;
        blink_on_time = 0;
        blink_off_time = 2;
        blink_counter = 10;
        blink_on_time = 0;
        blink_off_time = 2;
        blink_counter = 10;
@@ -438,8 +453,11 @@ int main()
                // FIXME: Maybe handle new ADC readings as well?
                if (next_clock_tick) {
                        next_clock_tick = 0;
                // FIXME: Maybe handle new ADC readings as well?
                if (next_clock_tick) {
                        next_clock_tick = 0;
-                       timer_check_buttons();
                        timer_blink();
                        timer_blink();
+                       // this has to be after the timer_blink() call
+                       // to override the status LED during long button press
+                       timer_check_buttons();
+
                        if ((jiffies & 0x0F) == 0) {
                                unsigned char i;
 
                        if ((jiffies & 0x0F) == 0) {
                                unsigned char i;