2020-03-11 12:45:02 -04:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2022-04-20 05:02:26 -04:00
|
|
|
orsource "$IDF_PATH/examples/common_components/env_caps/$IDF_TARGET/Kconfig.env_caps"
|
|
|
|
|
2020-03-11 12:45:02 -04:00
|
|
|
config EXAMPLE_TX_GPIO_NUM
|
|
|
|
int "TX GPIO number"
|
2022-04-20 05:02:26 -04:00
|
|
|
range ENV_GPIO_RANGE_MIN ENV_GPIO_OUT_RANGE_MAX
|
2020-03-11 12:45:02 -04:00
|
|
|
default 21 if IDF_TARGET_ESP32
|
2022-10-27 05:36:31 -04:00
|
|
|
default 0
|
2020-03-11 12:45:02 -04:00
|
|
|
help
|
|
|
|
This option selects the GPIO pin used for the TX signal. Connect the
|
|
|
|
TX signal to your transceiver.
|
|
|
|
|
|
|
|
config EXAMPLE_RX_GPIO_NUM
|
|
|
|
int "RX GPIO number"
|
2022-04-20 05:02:26 -04:00
|
|
|
range ENV_GPIO_RANGE_MIN ENV_GPIO_IN_RANGE_MAX
|
2020-03-11 12:45:02 -04:00
|
|
|
default 22 if IDF_TARGET_ESP32
|
2022-10-27 05:36:31 -04:00
|
|
|
default 2
|
2020-03-11 12:45:02 -04:00
|
|
|
help
|
|
|
|
This option selects the GPIO pin used for the RX signal. Connect the
|
|
|
|
RX signal to your transceiver.
|
|
|
|
|
|
|
|
endmenu
|