altos: Increase MicroPeak blink times a bit
authorKeith Packard <keithp@keithp.com>
Tue, 11 Dec 2012 22:41:53 +0000 (14:41 -0800)
committerKeith Packard <keithp@keithp.com>
Tue, 11 Dec 2012 22:41:53 +0000 (14:41 -0800)
make the 0 longer (1 sec now), and make the time between digits longer
(also 1 sec now)

Signed-off-by: Keith Packard <keithp@keithp.com>
src/micropeak/ao_report_tiny.c

index bdcc131eacdc2f783e2d4c880f8051088f35d5a8..0e8e287f63eae1c123988dd26ee12df95c3868ec 100644 (file)
@@ -24,7 +24,7 @@ static void
 ao_report_digit(uint8_t digit) __reentrant
 {
        if (!digit) {
 ao_report_digit(uint8_t digit) __reentrant
 {
        if (!digit) {
-               mid(AO_MS_TO_TICKS(600));
+               mid(AO_MS_TO_TICKS(1000));
                pause(AO_MS_TO_TICKS(300));
        } else {
                while (digit--) {
                pause(AO_MS_TO_TICKS(300));
        } else {
                while (digit--) {
@@ -32,7 +32,7 @@ ao_report_digit(uint8_t digit) __reentrant
                        pause(AO_MS_TO_TICKS(300));
                }
        }
                        pause(AO_MS_TO_TICKS(300));
                }
        }
-       pause(AO_MS_TO_TICKS(600));
+       pause(AO_MS_TO_TICKS(1000));
 }
 
 void
 }
 
 void