2013-09-14 02:45:33 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 22:08:57 +08:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2013-09-14 02:45:33 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
if ARCH_BOARD_MAPLE
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Select board type"
|
2013-10-02 22:24:46 +08:00
|
|
|
default MAPLE_STANDARD if ARCH_CHIP_STM32F103RB
|
|
|
|
default MAPLE_MINI if ARCH_CHIP_STM32F103CB
|
2013-09-14 02:45:33 +08:00
|
|
|
---help---
|
2019-09-09 05:59:14 +08:00
|
|
|
Select the board hosting the architecture. You must first select the
|
2013-09-14 02:45:33 +08:00
|
|
|
exact MCU part number, then the boards supporting that part will
|
|
|
|
be available for selection. Use ARCH_BOARD_CUSTOM to create a new
|
|
|
|
board configuration.
|
|
|
|
|
|
|
|
config MAPLE_STANDARD
|
|
|
|
bool "Maple"
|
2013-10-02 22:24:46 +08:00
|
|
|
depends on ARCH_CHIP_STM32F103RB
|
2013-09-14 02:45:33 +08:00
|
|
|
---help---
|
|
|
|
This version is the standard maple board, with STM32F103RBT6.
|
|
|
|
|
|
|
|
config MAPLE_MINI
|
|
|
|
bool "Maple Mini"
|
2013-10-02 22:24:46 +08:00
|
|
|
depends on ARCH_CHIP_STM32F103CB
|
2013-09-14 02:45:33 +08:00
|
|
|
---help---
|
|
|
|
This version is a mini layout of the normal one, with STM32F103CBT6.
|
|
|
|
It has different bootloader, memory size, and pin layout.
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
endif
|