diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-01-25 18:07:31 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-01-25 18:07:31 -0500 |
commit | ee86463ed2174b9f10771875067a4bed90d9c2ca (patch) | |
tree | 289e44f745e58953580d20daa0cf42dfb4d562f3 /src/avr | |
parent | b6ccd2682c57688a55a408abaa87a6cc61924cf2 (diff) | |
download | kutter-ee86463ed2174b9f10771875067a4bed90d9c2ca.tar.gz kutter-ee86463ed2174b9f10771875067a4bed90d9c2ca.tar.xz kutter-ee86463ed2174b9f10771875067a4bed90d9c2ca.zip |
avr: Only prompt for CLEAR_PRESCALER and SIMULAVR with LOW_LEVEL_OPTIONS
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/avr')
-rw-r--r-- | src/avr/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/avr/Kconfig b/src/avr/Kconfig index 65e86818..0bd4409f 100644 --- a/src/avr/Kconfig +++ b/src/avr/Kconfig @@ -80,7 +80,7 @@ config CLOCK_FREQ default 20000000 if AVR_FREQ_20000000 config CLEAR_PRESCALER - bool "Manually clear the CPU prescaler field at startup" + bool "Manually clear the CPU prescaler field at startup" if LOW_LEVEL_OPTIONS depends on MACH_at90usb1286 || MACH_at90usb646 || MACH_atmega32u4 default y help @@ -138,7 +138,7 @@ config SERIAL_PORT config SIMULAVR depends on MACH_atmega168 || MACH_atmega328 || MACH_atmega328p || MACH_atmega644p || MACH_atmega1284p - bool "Compile for simulavr software emulation" + bool "Compile for simulavr software emulation" if LOW_LEVEL_OPTIONS default n help Compile the code to run on simulavr software emulation |