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>
27 lines
816 B
Plaintext
27 lines
816 B
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_NUCLEO_F446RE
|
|
|
|
config NUCLEO_F446RE_QETIMER
|
|
int "Timer to use with QE encoder"
|
|
default 3
|
|
depends on SENSORS_QENCODER
|
|
|
|
config NUCLEO_F446RE_AJOY_MINBUTTONS
|
|
bool "Minimal Joystick Buttons"
|
|
default n if !STM32_USART1
|
|
default y if STM32_USART1
|
|
depends on AJOYSTICK
|
|
---help---
|
|
The Itead Joystick shield supports analog X/Y position and up to 5
|
|
buttons. Some of these buttons may conflict with other resources
|
|
(Button F, for example, conflicts with the default USART1 pin usage).
|
|
Selecting this option will return the number of buttons to the
|
|
minimal set: SELECT (joystick down), FIRE (BUTTON B), and JUMP
|
|
(BUTTON A).
|
|
|
|
endif # ARCH_BOARD_NUCLEO_F446RE
|