summaryrefslogtreecommitdiff
path: root/nuttx/configs/maple/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/maple/Kconfig')
-rw-r--r--nuttx/configs/maple/Kconfig5
1 files changed, 4 insertions, 1 deletions
diff --git a/nuttx/configs/maple/Kconfig b/nuttx/configs/maple/Kconfig
index bcc7b30ef..54d8bf631 100644
--- a/nuttx/configs/maple/Kconfig
+++ b/nuttx/configs/maple/Kconfig
@@ -7,7 +7,8 @@ if ARCH_BOARD_MAPLE
choice
prompt "Select board type"
- default MAPLE_STANDARD
+ default MAPLE_STANDARD if ARCH_CHIP_STM32F103RB
+ default MAPLE_MINI if ARCH_CHIP_STM32F103CB
---help---
Select the board hosting the architure. You must first select the
exact MCU part number, then the boards supporting that part will
@@ -16,11 +17,13 @@ choice
config MAPLE_STANDARD
bool "Maple"
+ depends on ARCH_CHIP_STM32F103RB
---help---
This version is the standard maple board, with STM32F103RBT6.
config MAPLE_MINI
bool "Maple Mini"
+ depends on ARCH_CHIP_STM32F103CB
---help---
This version is a mini layout of the normal one, with STM32F103CBT6.
It has different bootloader, memory size, and pin layout.