aboutsummaryrefslogtreecommitdiffstats
path: root/src/Kconfig
diff options
context:
space:
mode:
authorFlorian Heilmann <Florian.Heilmann@gmx.net>2018-08-07 01:03:54 +0200
committerKevin O'Connor <kevin@koconnor.net>2018-08-08 10:44:49 -0400
commit64e6d8589883975e6bd9656ac9ef05c6f6de6579 (patch)
treebd60fcda043b5d8a1db6519cdf74064e20e1655d /src/Kconfig
parentd15c106288ccd585570832fdf849a42cd5dab213 (diff)
downloadkutter-64e6d8589883975e6bd9656ac9ef05c6f6de6579.tar.gz
kutter-64e6d8589883975e6bd9656ac9ef05c6f6de6579.tar.xz
kutter-64e6d8589883975e6bd9656ac9ef05c6f6de6579.zip
sam4e8e: Add the SAM4e8e port
This can be flashed to e.g. the duet wifi using bossac. It requires a later version as is currently included in the klipper repo (1.8 vs. 1.2). Comms are currently via UART0 only, USB serial is still TBD Signed-off-by: Florian Heilmann <Florian.Heilmann@gmx.net>
Diffstat (limited to 'src/Kconfig')
-rw-r--r--src/Kconfig5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig
index 9f598453..54d6fabf 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -10,6 +10,8 @@ choice
bool "SAM3x8e (Arduino Due)"
config MACH_SAMD21
bool "SAMD21 (Arduino Zero)"
+ config MACH_SAM4E8E
+ bool "SAM4e8e (Duet Wifi/Eth)"
config MACH_LPC176X
bool "LPC176x (Smoothieboard)"
config MACH_STM32F1
@@ -25,12 +27,15 @@ endchoice
source "src/avr/Kconfig"
source "src/sam3x8e/Kconfig"
source "src/samd21/Kconfig"
+source "src/sam4e8e/Kconfig"
source "src/lpc176x/Kconfig"
source "src/stm32f1/Kconfig"
source "src/pru/Kconfig"
source "src/linux/Kconfig"
source "src/simulator/Kconfig"
+
+
# The HAVE_GPIO_x options allow boards to disable support for some
# commands if the hardware does not support the feature.
config HAVE_GPIO