aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lpc176x/Kconfig21
1 files changed, 17 insertions, 4 deletions
diff --git a/src/lpc176x/Kconfig b/src/lpc176x/Kconfig
index 2579029a..5c950ef5 100644
--- a/src/lpc176x/Kconfig
+++ b/src/lpc176x/Kconfig
@@ -58,15 +58,28 @@ config STACK_SIZE
int
default 512
-config SMOOTHIEWARE_BOOTLOADER
- bool "Target board uses Smoothieware bootloader"
- default y
+######################################################################
+# Bootloader
+######################################################################
+
+choice
+ prompt "Bootloader offset"
+ config LPC_FLASH_START_4000
+ bool "16KiB bootloader (Smoothieware bootloader)"
+ config LPC_FLASH_START_0000
+ bool "No bootloader"
+endchoice
config FLASH_START
hex
- default 0x4000 if SMOOTHIEWARE_BOOTLOADER
+ default 0x4000 if LPC_FLASH_START_4000
default 0x0000
+
+######################################################################
+# Communication inteface
+######################################################################
+
choice
prompt "Communication interface"
config LPC_USB