diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2015-02-10 13:01:19 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2015-02-10 13:01:19 +0100 |
commit | f76febc83d304119f90b2faf7c1f275292c968f7 (patch) | |
tree | 8a2b07695bb7913f6a388a2f0780bec1698dba1e | |
parent | 1d6b953d29e7ff776077f07994d3a26b23e33059 (diff) | |
download | hourglass-f76febc83d304119f90b2faf7c1f275292c968f7.tar.gz hourglass-f76febc83d304119f90b2faf7c1f275292c968f7.tar.bz2 hourglass-f76febc83d304119f90b2faf7c1f275292c968f7.zip |
ui: Fix LED test mode
-rw-r--r-- | ui.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -417,6 +417,7 @@ static void doInit () { void uiLoop () { #if 0 /* LED test mode */ + pwmStart (); uint8_t i = 0; uint8_t brightness = 0; while (1) { @@ -430,7 +431,7 @@ void uiLoop () { brightness = 0; } } - _delay_ms (1000); + _delay_ms (250); } #endif |