2017-04-21 00:29:16 -04:00
|
|
|
menu "Example Configuration"
|
2017-01-20 06:05:38 -05:00
|
|
|
|
2019-05-09 10:43:06 -04:00
|
|
|
choice EXAMPLE_MODEM_DEVICE
|
2018-11-22 22:53:20 -05:00
|
|
|
prompt "Choose supported modem device (DCE)"
|
2019-05-09 10:43:06 -04:00
|
|
|
default EXAMPLE_MODEM_DEVICE_BG96
|
2018-11-22 22:53:20 -05:00
|
|
|
help
|
|
|
|
Select modem device connected to the ESP DTE.
|
2019-05-09 10:43:06 -04:00
|
|
|
config EXAMPLE_MODEM_DEVICE_SIM800
|
2018-11-22 22:53:20 -05:00
|
|
|
bool "SIM800"
|
|
|
|
help
|
|
|
|
SIMCom SIM800L is a GSM/GPRS module.
|
|
|
|
It supports Quad-band 850/900/1800/1900MHz.
|
2019-05-09 10:43:06 -04:00
|
|
|
config EXAMPLE_MODEM_DEVICE_BG96
|
2018-11-22 22:53:20 -05:00
|
|
|
bool "BG96"
|
|
|
|
help
|
|
|
|
Quectel BG96 is a series of LTE Cat M1/Cat NB1/EGPRS module.
|
|
|
|
endchoice
|
|
|
|
|
2019-05-09 10:43:06 -04:00
|
|
|
config EXAMPLE_MODEM_PPP_AUTH_USERNAME
|
2018-11-22 22:53:20 -05:00
|
|
|
string "Set username for authentication"
|
|
|
|
default "espressif"
|
|
|
|
help
|
|
|
|
Set username for PPP Authentication.
|
|
|
|
|
2019-05-09 10:43:06 -04:00
|
|
|
config EXAMPLE_MODEM_PPP_AUTH_PASSWORD
|
2018-11-22 22:53:20 -05:00
|
|
|
string "Set password for authentication"
|
|
|
|
default "esp32"
|
|
|
|
help
|
|
|
|
Set password for PPP Authentication.
|
|
|
|
|
2019-05-09 10:43:06 -04:00
|
|
|
config EXAMPLE_SEND_MSG
|
2018-11-22 22:53:20 -05:00
|
|
|
bool "Short message (SMS)"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Select this, the modem will send a short message before power off.
|
|
|
|
|
2019-05-09 10:43:06 -04:00
|
|
|
if EXAMPLE_SEND_MSG
|
|
|
|
config EXAMPLE_SEND_MSG_PEER_PHONE_NUMBER
|
2019-01-25 11:10:53 -05:00
|
|
|
string "Peer Phone Number (with area code)"
|
|
|
|
default "+8610086"
|
|
|
|
help
|
|
|
|
Enter the peer phone number that you want to send message to.
|
2018-11-22 22:53:20 -05:00
|
|
|
endif
|
|
|
|
|
2017-04-21 00:29:16 -04:00
|
|
|
|
|
|
|
endmenu
|