From cc62a3dbf387dffe2d7e836c64cb5f5169971f05 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Tue, 14 Jun 2016 14:27:30 -0400 Subject: 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 --- src/Kconfig | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/Kconfig') 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 -- cgit v1.2.3-70-g09d2