diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-06-09 18:42:40 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-06-09 18:42:40 -0400 |
commit | 46846d4297dcacf5b3fe70dd161fc18c754f8469 (patch) | |
tree | 50bee6f94aa9d5123f79a43f8e726fe564c027f7 /src | |
parent | 01ee9e16c5f7820b74d1018c130a842767edd44b (diff) | |
download | kutter-46846d4297dcacf5b3fe70dd161fc18c754f8469.tar.gz kutter-46846d4297dcacf5b3fe70dd161fc18c754f8469.tar.xz kutter-46846d4297dcacf5b3fe70dd161fc18c754f8469.zip |
avr: Enable CLEAR_PRESCALER by default on at90usb1286
It appears this option is commonly needed on the at90usb1286 avr chip
(the printrboard requires it), so default it on.
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 3050963e..62b7a6df 100644 --- a/src/avr/Kconfig +++ b/src/avr/Kconfig @@ -59,7 +59,7 @@ config CLOCK_FREQ config CLEAR_PRESCALER bool "Manually clear the CPU prescaler field at startup" depends on MACH_at90usb1286 - default n + default y help Some AVR chips ship with a "clock prescaler" that causes the chip to run at 1/8th speed. Enable this setting to clear the |