summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-12-11 14:41:53 -0800
committerKeith Packard <keithp@keithp.com>2012-12-11 14:41:53 -0800
commitd309fcff54fe6904fb860f33c15fcb7d1c96e91b (patch)
tree6d1e3e0fa1a6e893281522474f915775b42b37f6 /src
parentc233ef67f42c14cb1d0e0542a9523b279f826af5 (diff)
altos: Increase MicroPeak blink times a bit
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>
Diffstat (limited to 'src')
-rw-r--r--src/micropeak/ao_report_tiny.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/micropeak/ao_report_tiny.c b/src/micropeak/ao_report_tiny.c
index bdcc131e..0e8e287f 100644
--- a/src/micropeak/ao_report_tiny.c
+++ b/src/micropeak/ao_report_tiny.c
@@ -24,7 +24,7 @@ static void
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--) {
@@ -32,7 +32,7 @@ ao_report_digit(uint8_t digit) __reentrant
pause(AO_MS_TO_TICKS(300));
}
}
- pause(AO_MS_TO_TICKS(600));
+ pause(AO_MS_TO_TICKS(1000));
}
void