diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-03-01 11:22:32 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-03-01 19:03:34 -0500 |
commit | d57bc79513462d2ebecb72062458bc6077ad48ef (patch) | |
tree | 5c8b297b00564434a6773216e498526d083207e4 /src | |
parent | d33c4820bd9f9d8d6301270c846757ee4c3d362c (diff) | |
download | kutter-d57bc79513462d2ebecb72062458bc6077ad48ef.tar.gz kutter-d57bc79513462d2ebecb72062458bc6077ad48ef.tar.xz kutter-d57bc79513462d2ebecb72062458bc6077ad48ef.zip |
atsamd: Use the full micro-controller name for CONFIG_MCU
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/atsamd/Kconfig | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/atsamd/Kconfig b/src/atsamd/Kconfig index 236a2a0e..68232acd 100644 --- a/src/atsamd/Kconfig +++ b/src/atsamd/Kconfig @@ -42,11 +42,11 @@ config MACH_SAMD51 config MCU string - default "samd21g" if MACH_SAMD21G18 - default "samd51g19" if MACH_SAMD51G19 - default "samd51j19" if MACH_SAMD51J19 - default "samd51n19" if MACH_SAMD51N19 - default "samd51p20" if MACH_SAMD51P20 + default "samd21g18a" if MACH_SAMD21G18 + default "samd51g19a" if MACH_SAMD51G19 + default "samd51j19a" if MACH_SAMD51J19 + default "samd51n19a" if MACH_SAMD51N19 + default "samd51p20a" if MACH_SAMD51P20 config CLOCK_FREQ int |