diff options
author | Keith Packard <keithp@keithp.com> | 2012-11-18 10:36:17 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-11-18 10:36:17 -0800 |
commit | 285fccfa82d89b0decc3b44f413eef9d0c8f1e63 (patch) | |
tree | d7d9a6b31b9c26cc527154094b41946f901390de | |
parent | 8ff0db3979405357003b52022e564a3da75ec3fb (diff) |
altos: Slow down micropeak report timing
This makes reading the LED a lot easier.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/micropeak/ao_report_tiny.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/micropeak/ao_report_tiny.c b/src/micropeak/ao_report_tiny.c index 8b4960c6..109af1ed 100644 --- a/src/micropeak/ao_report_tiny.c +++ b/src/micropeak/ao_report_tiny.c @@ -25,14 +25,14 @@ ao_report_digit(uint8_t digit) __reentrant { if (!digit) { mid(AO_MS_TO_TICKS(600)); - pause(AO_MS_TO_TICKS(200)); + pause(AO_MS_TO_TICKS(300)); } else { while (digit--) { - mid(AO_MS_TO_TICKS(200)); - pause(AO_MS_TO_TICKS(200)); + mid(AO_MS_TO_TICKS(300)); + pause(AO_MS_TO_TICKS(300)); } } - pause(AO_MS_TO_TICKS(300)); + pause(AO_MS_TO_TICKS(600)); } void |