diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-02-24 00:37:03 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-02-24 00:37:03 -0500 |
commit | 9e8077009e4e0be51ebc064f587d74ca1e945975 (patch) | |
tree | 66698802b6d577a08c3b7fa45e52b362a09a4f60 | |
parent | da68da7a63322c300acf574f0068bb09b8073916 (diff) | |
download | kutter-9e8077009e4e0be51ebc064f587d74ca1e945975.tar.gz kutter-9e8077009e4e0be51ebc064f587d74ca1e945975.tar.xz kutter-9e8077009e4e0be51ebc064f587d74ca1e945975.zip |
atsamd: Default to using an external 32Khz crystal
Most samd boards have the crystal and it does improve the clock
accuracy, so default to enabling it.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | src/atsamd/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/atsamd/Kconfig b/src/atsamd/Kconfig index b9bcbab2..af516685 100644 --- a/src/atsamd/Kconfig +++ b/src/atsamd/Kconfig @@ -55,10 +55,10 @@ config CLOCK_FREQ choice prompt "Clock Reference" - config CLOCK_REF_INTERNAL - bool "Internal clock" config CLOCK_REF_X32K bool "32.768Khz crystal" + config CLOCK_REF_INTERNAL + bool "Internal clock" endchoice choice |