2020-03-11 12:45:02 -04:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
|
|
|
config EXAMPLE_TX_GPIO_NUM
|
|
|
|
int "TX GPIO number"
|
2021-01-13 21:44:59 -05:00
|
|
|
default 2 if IDF_TARGET_ESP32C3
|
|
|
|
default 20 if IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3
|
2020-03-11 12:45:02 -04:00
|
|
|
default 21 if IDF_TARGET_ESP32
|
|
|
|
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"
|
2021-01-13 21:44:59 -05:00
|
|
|
default 3 if IDF_TARGET_ESP32C3
|
|
|
|
default 21 if IDF_TARGET_ESP32S2 || IDF_TARGET_ESP32S3
|
2020-03-11 12:45:02 -04:00
|
|
|
default 22 if IDF_TARGET_ESP32
|
|
|
|
help
|
|
|
|
This option selects the GPIO pin used for the RX signal. Connect the
|
|
|
|
RX signal to your transceiver.
|
|
|
|
|
|
|
|
endmenu
|