summaryrefslogtreecommitdiffstats
path: root/app/max7219.c
diff options
context:
space:
mode:
authorroot <root@ka-ata-killa.ourano.james.local>2021-03-08 17:00:58 +0000
committerroot <root@ka-ata-killa.ourano.james.local>2021-03-08 17:00:58 +0000
commit70a5c9e1eeeb162049a6678d3f15b99628dcc327 (patch)
tree38330c14385ae0c9ab15b07805b30eb8c202c2dd /app/max7219.c
parent11623a5ced1a64264d43f1f844c1cf5f34562581 (diff)
downloadclock-70a5c9e1eeeb162049a6678d3f15b99628dcc327.tar.gz
clock-70a5c9e1eeeb162049a6678d3f15b99628dcc327.tar.bz2
clock-70a5c9e1eeeb162049a6678d3f15b99628dcc327.zip
fix bug we never entered survey mode, cycle bottom display at a rate that is co-prime with 60
Diffstat (limited to 'app/max7219.c')
-rw-r--r--app/max7219.c2
1 files changed, 1 insertions, 1 deletions
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) {