diff options
author | Erich Eckner <git@eckner.net> | 2018-11-05 13:39:05 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-11-05 13:39:05 +0100 |
commit | 93fa65bd29cf735f680ed112c9b0a6ee012f21cb (patch) | |
tree | 56a34763d2040a013be475248436f32dd7bc2c4a /multiplexer.c | |
parent | 679c8eff2aeb3641973ff00252d167e01bdec86f (diff) | |
download | anzeige-93fa65bd29cf735f680ed112c9b0a6ee012f21cb.tar.xz |
7 lines = start from 6 to 0
Diffstat (limited to 'multiplexer.c')
-rw-r--r-- | multiplexer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/multiplexer.c b/multiplexer.c index 3465d1f..db1c572 100644 --- a/multiplexer.c +++ b/multiplexer.c @@ -84,7 +84,7 @@ void *put_on_display(void *param) printf(" "); #endif // !SILENT #else // SKIP_GPIO - for (line=7; line>=0; line--) { + for (line=6; line>=0; line--) { GPIO_CLR = 1<<GATE_PIN; // Licht an if (clock_gettime(CLOCK_MONOTONIC_RAW, &start_time) != 0) { display_data -> keep_running = 0; |