31 lines
738 B
Plaintext
31 lines
738 B
Plaintext
|
#
|
||
|
# For a description of the syntax of this configuration file,
|
||
|
# see misc/tools/kconfig-language.txt.
|
||
|
#
|
||
|
|
||
|
if ARCH_BOARD_MAPLE
|
||
|
|
||
|
choice
|
||
|
prompt "Select board type"
|
||
|
default MAPLE_STANDARD
|
||
|
---help---
|
||
|
Select the board hosting the architure. You must first select the
|
||
|
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"
|
||
|
---help---
|
||
|
This version is the standard maple board, with STM32F103RBT6.
|
||
|
|
||
|
config MAPLE_MINI
|
||
|
bool "Maple Mini"
|
||
|
---help---
|
||
|
This version is a mini layout of the normal one, with STM32F103CBT6.
|
||
|
It has different bootloader, memory size, and pin layout.
|
||
|
|
||
|
endchoice
|
||
|
|
||
|
endif
|