diff options
author | Daniel Friesel <derf@finalrewind.org> | 2022-01-09 17:23:42 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2022-01-09 17:23:42 +0100 |
commit | cd266af44d991c00e841f1bbac95d89f44d52212 (patch) | |
tree | 6971fd4d23ddfac96c752d1a69cf03f788ff659a /src | |
parent | 19c0be347dcb62a76381c243beb1f0ff050211de (diff) |
ws2812b dmap does not use stdin
Diffstat (limited to 'src')
-rw-r--r-- | src/app/ws2812b_dmap/Kconfig | 2 | ||||
-rw-r--r-- | src/app/ws2812b_dmap/main.cc | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/app/ws2812b_dmap/Kconfig b/src/app/ws2812b_dmap/Kconfig index 8f7c84a..d48a3b6 100644 --- a/src/app/ws2812b_dmap/Kconfig +++ b/src/app/ws2812b_dmap/Kconfig @@ -3,4 +3,4 @@ # SPDX-License-Identifier: CC0-1.0 prompt "dmap WS2812b" -depends on arch_arduino_nano && meta_driver_neopixel && meta_driver_stdin +depends on arch_arduino_nano && meta_driver_neopixel diff --git a/src/app/ws2812b_dmap/main.cc b/src/app/ws2812b_dmap/main.cc index 16dbf60..ed9b083 100644 --- a/src/app/ws2812b_dmap/main.cc +++ b/src/app/ws2812b_dmap/main.cc @@ -5,7 +5,6 @@ */ #include "arch.h" #include "driver/neopixel.h" -#include "driver/stdin.h" #include "driver/stdout.h" #include <util/delay.h> #include <avr/io.h> @@ -70,7 +69,6 @@ int main(void) arch.setup(); gpio.setup(); kout.setup(); - kin.setup(); np.setup(); |