summaryrefslogtreecommitdiff
path: root/nuttx/configs/maple/Kconfig
blob: 54d8bf631e649e72ff85d1603792fbe6776e20a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# 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 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
		be available for selection.  Use ARCH_BOARD_CUSTOM to create a new
		board configuration.

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.

endchoice

endif