diff options
author | Florian Heilmann <Florian.Heilmann@gmx.net> | 2019-01-13 02:14:50 +0100 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-01-12 20:14:50 -0500 |
commit | 6256599a6dfc0c52a3c5e019c470d4cc46feeb82 (patch) | |
tree | 4453913a6178a06e3f58dbfc530e6d65291473d3 /src/Kconfig | |
parent | 432e6c490a229f71d608ec0391773ab7f90534d1 (diff) | |
download | kutter-6256599a6dfc0c52a3c5e019c470d4cc46feeb82.tar.gz kutter-6256599a6dfc0c52a3c5e019c470d4cc46feeb82.tar.xz kutter-6256599a6dfc0c52a3c5e019c470d4cc46feeb82.zip |
src: Rename source folders for atsam and atsamd architectures
Signed-off-by: Florian Heilmann <Florian.Heilmann@gmx.net>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Kconfig b/src/Kconfig index 16ce3531..6add97a3 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -13,9 +13,9 @@ choice prompt "Micro-controller Architecture" config MACH_AVR bool "Atmega AVR" - config MACH_SAM3 + config MACH_ATSAM bool "SAM3/SAM4 (Due and Duet)" - config MACH_SAMD21 + config MACH_ATSAMD bool "SAMD21 (Arduino Zero)" config MACH_LPC176X bool "LPC176x (Smoothieboard)" @@ -30,8 +30,8 @@ choice endchoice source "src/avr/Kconfig" -source "src/sam3/Kconfig" -source "src/samd21/Kconfig" +source "src/atsam/Kconfig" +source "src/atsamd/Kconfig" source "src/lpc176x/Kconfig" source "src/stm32f1/Kconfig" source "src/pru/Kconfig" |