diff options
author | Keith Packard <keithp@keithp.com> | 2012-12-11 14:42:43 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-12-11 14:42:43 -0800 |
commit | a4a841828924ee37f5201d4ff0aec38459f2d802 (patch) | |
tree | a8c5363b318ee75ceb4fcae596507fd98c834cde | |
parent | b26e837a6f18641aae9372aab22168849ff10812 (diff) | |
parent | d309fcff54fe6904fb860f33c15fcb7d1c96e91b (diff) |
Merge branch 'micropeak-1.1'
-rw-r--r-- | src/micropeak/ao_report_tiny.c | 4 |
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 |