diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-06-14 14:27:30 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-06-14 14:27:30 -0400 |
commit | cc62a3dbf387dffe2d7e836c64cb5f5169971f05 (patch) | |
tree | 2ac823250c391a4883e7374616adf6d8eba33982 /src/Kconfig | |
parent | 31c04261c14b7ab7cca2d191d294c3efa326c8f1 (diff) | |
download | kutter-cc62a3dbf387dffe2d7e836c64cb5f5169971f05.tar.gz kutter-cc62a3dbf387dffe2d7e836c64cb5f5169971f05.tar.xz kutter-cc62a3dbf387dffe2d7e836c64cb5f5169971f05.zip |
sam3x8e: Add initial support for Arduino Due boards
This adds basic support for running on the Atmel SAM3x8e
micro-controllers that are found in the Arudino Due boards.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Kconfig b/src/Kconfig index 1a326d06..070d4495 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -6,11 +6,14 @@ choice prompt "Micro-controller Architecture" config MACH_AVR bool "Atmega AVR" + config MACH_SAM3X8E + bool "SAM3x8e (Arduino Due)" config MACH_SIMU bool "Host simulator" endchoice source "src/avr/Kconfig" +source "src/sam3x8e/Kconfig" source "src/simulator/Kconfig" # The HAVE_GPIO_x options allow boards to disable support for some @@ -35,5 +38,4 @@ config NO_UNSTEP_DELAY config INLINE_STEPPER_HACK # Enables gcc to inline stepper_event() into the main timer irq handler bool - default y if MACH_AVR - default n + default y |