aboutsummaryrefslogtreecommitdiff
path: root/nuttx/configs/Kconfig
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2013-06-01 01:04:32 +0200
committerLorenz Meier <lm@inf.ethz.ch>2013-06-01 01:04:32 +0200
commit5375bb5b86e266157ceceef08c367da711b8144e (patch)
tree88bc81cab11d8f0b2b6f9391f803051c081b2ecb /nuttx/configs/Kconfig
parent27ee36b2049167a1272122548fe61aa2993d79c1 (diff)
downloadpx4-firmware-5375bb5b86e266157ceceef08c367da711b8144e.tar.gz
px4-firmware-5375bb5b86e266157ceceef08c367da711b8144e.tar.bz2
px4-firmware-5375bb5b86e266157ceceef08c367da711b8144e.zip
Cleanup, WIP, needs a NuttX checkout to Firmware/NuttX now
Diffstat (limited to 'nuttx/configs/Kconfig')
-rw-r--r--nuttx/configs/Kconfig40
1 files changed, 0 insertions, 40 deletions
diff --git a/nuttx/configs/Kconfig b/nuttx/configs/Kconfig
deleted file mode 100644
index ebe6d5480..000000000
--- a/nuttx/configs/Kconfig
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# For a description of the syntax of this configuration file,
-# see misc/tools/kconfig-language.txt.
-#
-
-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.
-
-config ARCH_BOARD_PX4FMU
- bool "PX4FMU board"
- depends on ARCH_CHIP_STM32F405RG
- ---help---
- PX4 system Flight Management Unit
-
-config ARCH_BOARD_PX4IO
- bool "PX4IO board"
- depends on ARCH_CHIP_STM32F100C8
- ---help---
- PX4 system I/O expansion board
-
-endchoice
-
-config ARCH_BOARD
- string
- default "px4fmu" if ARCH_BOARD_PX4FMU
- default "px4io" if ARCH_BOARD_PX4IO
- default "" if ARCH_BOARD_CUSTOM
-
-if ARCH_BOARD_PX4FMU
-source "configs/px4fmu/Kconfig"
-endif
-if ARCH_BOARD_PX4IO
-source "configs/px4io/Kconfig"
-endif