2012-04-06 12:58:25 -03:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2012-04-06 13:45:52 -03:00
|
|
|
# see misc/tools/kconfig-language.txt.
|
2012-04-06 12:58:25 -03:00
|
|
|
#
|
2012-04-16 12:45:33 -03:00
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Select target board"
|
|
|
|
default ARCH_BOARD_CUSTOM
|
|
|
|
---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.
|
|
|
|
|
2012-08-26 21:56:11 -03:00
|
|
|
config ARCH_BOARD_PX4FMU
|
|
|
|
bool "PX4FMU board"
|
|
|
|
depends on ARCH_CHIP_STM32F405RG
|
2012-04-16 12:45:33 -03:00
|
|
|
---help---
|
2012-08-26 21:56:11 -03:00
|
|
|
PX4 system Flight Management Unit
|
2012-04-16 12:45:33 -03:00
|
|
|
|
2012-08-26 21:56:11 -03:00
|
|
|
config ARCH_BOARD_PX4IO
|
|
|
|
bool "PX4IO board"
|
|
|
|
depends on ARCH_CHIP_STM32F100C8
|
2012-04-16 12:45:33 -03:00
|
|
|
---help---
|
2012-08-26 21:56:11 -03:00
|
|
|
PX4 system I/O expansion board
|
2012-09-17 15:18:44 -03:00
|
|
|
|
2012-04-16 12:45:33 -03:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config ARCH_BOARD
|
|
|
|
string
|
2012-08-26 21:56:11 -03:00
|
|
|
default "px4fmu" if ARCH_BOARD_PX4FMU
|
|
|
|
default "px4io" if ARCH_BOARD_PX4IO
|
2012-04-16 12:45:33 -03:00
|
|
|
default "" if ARCH_BOARD_CUSTOM
|
|
|
|
|
2012-08-26 21:56:11 -03:00
|
|
|
if ARCH_BOARD_PX4FMU
|
|
|
|
source "configs/px4fmu/Kconfig"
|
2012-07-10 19:27:51 -03:00
|
|
|
endif
|
2012-08-26 21:56:11 -03:00
|
|
|
if ARCH_BOARD_PX4IO
|
|
|
|
source "configs/px4io/Kconfig"
|
2012-07-10 19:27:51 -03:00
|
|
|
endif
|