Files
esp-protocols/components/esp_modem/test/target/main/Kconfig.projbuild

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
991 B
Plaintext
Raw Normal View History

2022-11-28 14:35:02 +01:00
menu "Test App Configuration"
2021-04-04 22:15:46 +02:00
2022-11-28 14:35:02 +01:00
config TEST_APP_PPP_SERVER_IP
string "IP address of PPP server"
default "10.0.0.1"
2021-04-04 22:15:46 +02:00
help
2022-11-28 14:35:02 +01:00
IP address of PPP server. Note: this is also the address
where the TCP server is started to test the connection
2021-04-04 22:15:46 +02:00
2022-11-28 14:35:02 +01:00
config TEST_APP_PPP_CLIENT_IP
string "IP address of PPP client"
default "10.0.0.2"
2021-04-04 22:15:46 +02:00
help
2022-11-28 14:35:02 +01:00
IP address that PPP server assigns to PPP client.
config TEST_APP_UART_TX_PIN
int "TXD Pin Number"
default 6
range 0 31
help
Pin number of UART TX.
config TEST_APP_UART_RX_PIN
int "RXD Pin Number"
default 7
range 0 31
2021-04-04 22:15:46 +02:00
help
2022-11-28 14:35:02 +01:00
Pin number of UART RX.
2021-04-04 22:15:46 +02:00
2022-11-28 14:35:02 +01:00
config TEST_APP_TCP_PORT
int "Port of test"
range 0 65535
default 2222
2021-04-04 22:15:46 +02:00
help
2022-11-28 14:35:02 +01:00
The remote port to which the client will connects to
once the PPP connection established
2021-04-04 22:15:46 +02:00
endmenu