diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-05-29 14:24:18 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-05-29 14:24:18 -0400 |
commit | 73207a12bab0c52f56a804d2aa304772a7bd6a38 (patch) | |
tree | d1f5432fb444f70ca7eb98f16054e4accff21c31 /src | |
parent | 3af87e1c42ece2a36773520daa06612888cb9e29 (diff) | |
download | kutter-73207a12bab0c52f56a804d2aa304772a7bd6a38.tar.gz kutter-73207a12bab0c52f56a804d2aa304772a7bd6a38.tar.xz kutter-73207a12bab0c52f56a804d2aa304772a7bd6a38.zip |
avr: Allow atmega328 to select a cpu speed of 20Mhz
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/avr/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/avr/Kconfig b/src/avr/Kconfig index 0b71156b..0f2233d0 100644 --- a/src/avr/Kconfig +++ b/src/avr/Kconfig @@ -43,7 +43,7 @@ choice prompt "Processor speed" config AVR_FREQ_20000000 bool "20Mhz" - depends on MACH_atmega168 || MACH_atmega644p + depends on MACH_atmega168 || MACH_atmega328 || MACH_atmega644p config AVR_FREQ_16000000 bool "16Mhz" config AVR_FREQ_8000000 |