From 285fccfa82d89b0decc3b44f413eef9d0c8f1e63 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sun, 18 Nov 2012 10:36:17 -0800 Subject: [PATCH] altos: Slow down micropeak report timing This makes reading the LED a lot easier. Signed-off-by: Keith Packard --- src/micropeak/ao_report_tiny.c | 8 ++++---- 1 file 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 -- 2.30.2