a1c991d921
Move boards to boards folder * boards: rename configs folder to boards This is the proposed layout after the change: boards: - folder containing board folders <board>: - name of each board drivers: - extra drivers specific for platform include: - header files for the boars scripts: - extra scripts specific for platform src: - board specific code tools: - extra tools specific for platform <config>: - board specific configuration(s) Note: <xxx> names are dependent on platform This is a logical change to aim to the arch layout but this is a huge change it should be done in several steps to lower the risk. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * Kconfig: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * Makefile: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * Makefile.*: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * Make.defs: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * .sh: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * .mk: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * .c & .h: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * .bat: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> Approved-by: Gregory Nutt <gnutt@nuttx.org>
118 lines
2.9 KiB
Plaintext
118 lines
2.9 KiB
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
if ARCH_BOARD_STM32F4_DISCOVERY
|
|
|
|
config STM32F4DISBB
|
|
bool "STM32F4DIS-BB base board"
|
|
default n
|
|
---help---
|
|
Select if you are using the STM32F4DIS-BB base board with the
|
|
STM32F4Discovery.
|
|
|
|
config STM32_ROMFS
|
|
bool "Automount baked-in ROMFS image"
|
|
default n
|
|
depends on FS_ROMFS
|
|
---help---
|
|
Select STM32_ROMFS_IMAGEFILE, STM32_ROMFS_DEV_MINOR, STM32_ROMFS_MOUNTPOINT
|
|
|
|
config STM32_ROMFS_DEV_MINOR
|
|
int "Minor for the block device backing the data"
|
|
depends on STM32_ROMFS
|
|
default 64
|
|
|
|
config STM32_ROMFS_MOUNTPOINT
|
|
string "Mountpoint of the custom romfs image"
|
|
depends on STM32_ROMFS
|
|
default "/rom"
|
|
|
|
config STM32_ROMFS_IMAGEFILE
|
|
string "ROMFS image file to include into build"
|
|
depends on STM32_ROMFS
|
|
default "../../../rom.img"
|
|
|
|
config STM32F4DISCO_USBHOST_STACKSIZE
|
|
int "USB host waiter stack size"
|
|
default 1024
|
|
depends on USBHOST
|
|
|
|
config STM32F4DISCO_USBHOST_PRIO
|
|
int "USB host waiter task priority"
|
|
default 100
|
|
depends on USBHOST
|
|
|
|
config STM32F4DISCO_QETIMER
|
|
int "Timer to use with QE encoder"
|
|
default 2
|
|
depends on SENSORS_QENCODER
|
|
|
|
config STM32F4DISCO_LIS3DSH
|
|
bool "Enable LIS3DSH driver for the IMU on STM32F4Discovery (rev. MB997C)"
|
|
default n
|
|
depends on SPI
|
|
depends on LIS3DSH
|
|
default n
|
|
---help---
|
|
Select to create a LIS3DSH driver instance for the builtin accelerometer of
|
|
STM32F4Discovery. Provides /dev/acc0 device file.
|
|
Also see apps/examples/lis3dsh_reader.
|
|
The LIS3DSH is available on the STM32F4Discovery rev. MB997C (see the board manual).
|
|
|
|
config PM_BUTTONS
|
|
bool "PM button support"
|
|
default n
|
|
depends on PM && ARCH_IRQBUTTONS
|
|
---help---
|
|
Enable PM button EXTI interrupts to support PM testing
|
|
|
|
config PM_BUTTON_ACTIVITY
|
|
int "Button PM activity weight"
|
|
default 10
|
|
depends on PM_BUTTONS
|
|
---help---
|
|
The activity weight to report to the power management subsystem when
|
|
a button is pressed.
|
|
|
|
config PM_ALARM_SEC
|
|
int "PM_STANDBY delay (seconds)"
|
|
default 15
|
|
depends on PM && RTC_ALARM
|
|
---help---
|
|
Number of seconds to wait in PM_STANDBY before going to PM_STANDBY
|
|
mode.
|
|
|
|
config PM_ALARM_NSEC
|
|
int "PM_STANDBY delay (nanoseconds)"
|
|
default 0
|
|
depends on PM && RTC_ALARM
|
|
---help---
|
|
Number of additional nanoseconds to wait in PM_STANDBY before going
|
|
to PM_STANDBY mode.
|
|
|
|
config PM_SLEEP_WAKEUP
|
|
bool "PM_SLEEP wake-up alarm"
|
|
default n
|
|
depends on PM && RTC_ALARM
|
|
---help---
|
|
Wake-up of PM_SLEEP mode after a delay and resume normal operation.
|
|
|
|
config PM_SLEEP_WAKEUP_SEC
|
|
int "PM_SLEEP delay (seconds)"
|
|
default 10
|
|
depends on PM && RTC_ALARM
|
|
---help---
|
|
Number of seconds to wait in PM_SLEEP before going to PM_STANDBY mode.
|
|
|
|
config PM_SLEEP_WAKEUP_NSEC
|
|
int "PM_SLEEP delay (nanoseconds)"
|
|
default 0
|
|
depends on PM && RTC_ALARM
|
|
---help---
|
|
Number of additional nanoseconds to wait in PM_SLEEP before going to
|
|
PM_STANDBY mode.
|
|
|
|
endif
|