From 70a5c9e1eeeb162049a6678d3f15b99628dcc327 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 8 Mar 2021 17:00:58 +0000 Subject: fix bug we never entered survey mode, cycle bottom display at a rate that is co-prime with 60 --- app/max7219.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/max7219.c') diff --git a/app/max7219.c b/app/max7219.c index add2044..2e055fb 100644 --- a/app/max7219.c +++ b/app/max7219.c @@ -427,7 +427,7 @@ void max7219_dispatch (void) write_dd (l.nanosecond / 10000000, 6, 1); wot = e.s; - wot /= 4; + wot /= 7; wot %= 4; switch (wot) { -- cgit v1.2.3