forked from Archive/PX4-Autopilot
23 lines
650 B
Plaintext
23 lines
650 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see misc/tools/kconfig-language.txt.
|
|
#
|
|
|
|
if CONFIG_ARCH_BOARD_PX4FLOW_V2
|
|
|
|
config BOARD_HAS_PROBES
|
|
bool "Board provides GPIO or other Hardware for signaling to timing analyze."
|
|
default y
|
|
---help---
|
|
This board provides ADDR[0:2] as PROBE_1-3 to provide timing signals from selected drivers.
|
|
|
|
config BOARD_USE_PROBES
|
|
bool "Enable the use provides ADDR[0:2] as PROBE_1-3 to provide timing signals from selected drivers"
|
|
default n
|
|
depends on BOARD_HAS_PROBES
|
|
|
|
---help---
|
|
Select to use GPIO provides ADDR[0:2] as PROBE_1-3 to provide timing signals from selected drivers.
|
|
|
|
endif
|