aboutsummaryrefslogtreecommitdiffstats
path: root/src/Kconfig
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-12-26 16:50:44 -0500
committerKevin O'Connor <kevin@koconnor.net>2019-01-07 19:33:26 -0500
commit94c86d6c6ce85143d47b79f7cc2680c6b0ee6889 (patch)
treea9b8e293c4ba986e306366f039d9b979086bb12b /src/Kconfig
parente278552d44e2d795e335ec33f898c9d6e1413688 (diff)
downloadkutter-94c86d6c6ce85143d47b79f7cc2680c6b0ee6889.tar.gz
kutter-94c86d6c6ce85143d47b79f7cc2680c6b0ee6889.tar.xz
kutter-94c86d6c6ce85143d47b79f7cc2680c6b0ee6889.zip
sam3: Merge sam4e8e support into sam3 code
Most of the peripherals on the sam4e8e are similar to the ones on the sam3x8e mcu. Merge the code together and use just one code directory. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Kconfig')
-rw-r--r--src/Kconfig7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/Kconfig b/src/Kconfig
index 69768a4e..e94ff5b2 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -6,12 +6,10 @@ choice
prompt "Micro-controller Architecture"
config MACH_AVR
bool "Atmega AVR"
- config MACH_SAM3X8E
- bool "SAM3x8e (Arduino Due)"
+ config MACH_SAM3
+ bool "SAM3/SAM4 (Due and Duet)"
config MACH_SAMD21
bool "SAMD21 (Arduino Zero)"
- config MACH_SAM4E8E
- bool "SAM4e8e (Duet Wifi/Eth)"
config MACH_LPC176X
bool "LPC176x (Smoothieboard)"
config MACH_STM32F1
@@ -27,7 +25,6 @@ endchoice
source "src/avr/Kconfig"
source "src/sam3/Kconfig"
source "src/samd21/Kconfig"
-source "src/sam4e8e/Kconfig"
source "src/lpc176x/Kconfig"
source "src/stm32f1/Kconfig"
source "src/pru/Kconfig"