diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-08-07 19:37:50 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-08-07 19:39:57 -0400 |
commit | 114c8c5b6d9a0286ac5e457848965e4491a5b595 (patch) | |
tree | 896d144b148962ffe65a3be228777273d6fb0acf /src | |
parent | d50f4e23e0ee679f4395fdcf312b03e71f1239da (diff) | |
download | kutter-114c8c5b6d9a0286ac5e457848965e4491a5b595.tar.gz kutter-114c8c5b6d9a0286ac5e457848965e4491a5b595.tar.xz kutter-114c8c5b6d9a0286ac5e457848965e4491a5b595.zip |
avr: Enable watchdog code even on simulavr
The simulavr simulator will warn when writing to the watchdog
registers, but running code closer to what real hardware runs is worth
a few extra warnings.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/avr/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/avr/Kconfig b/src/avr/Kconfig index 4a0d71df..85967a38 100644 --- a/src/avr/Kconfig +++ b/src/avr/Kconfig @@ -79,7 +79,6 @@ config AVR_STACK_SIZE config AVR_WATCHDOG bool - depends on !SIMULAVR default y config AVR_USBSERIAL bool "Use USB for communication (instead of serial)" |