diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2021-05-28 15:17:20 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2021-05-28 15:17:20 +0200 |
commit | 460ecf074d133cbe026cbddb7cf5fad1180c9831 (patch) | |
tree | 2beb0cfa84698dbb723c7c62acec703fad3437da /src/arch/arduino-nano/driver | |
parent | cf3ba89c46301bb8c0a1eda470c353801117fc0b (diff) |
Set loop/wakeup/ostream either via .config or via app/commandline
Diffstat (limited to 'src/arch/arduino-nano/driver')
-rw-r--r-- | src/arch/arduino-nano/driver/counter.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/arduino-nano/driver/counter.cc b/src/arch/arduino-nano/driver/counter.cc index 0c9f8a4..842bfe8 100644 --- a/src/arch/arduino-nano/driver/counter.cc +++ b/src/arch/arduino-nano/driver/counter.cc @@ -5,7 +5,7 @@ */ #include "driver/counter.h" -#if defined(TIMER_S) || defined(WITH_LOOP) +#if defined(TIMER_S) || defined(CONFIG_loop) #warn "timer/loop and counter are mutually exclusive. Expect odd behaviour." #endif |