Files
esp-protocols/esp_modem/examples/simple_cxx_client/main/Kconfig.projbuild

36 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-02-26 18:32:15 +01:00
menu "Example Configuration"
choice EXAMPLE_MODEM_DEVICE
prompt "Choose supported modem device (DCE)"
default EXAMPLE_MODEM_DEVICE_BG96
help
Select modem device connected to the ESP DTE.
config EXAMPLE_MODEM_DEVICE_SIM800
bool "SIM800"
help
SIMCom SIM800L is a GSM/GPRS module.
It supports Quad-band 850/900/1800/1900MHz.
config EXAMPLE_MODEM_DEVICE_BG96
bool "BG96"
help
Quectel BG96 is a series of LTE Cat M1/Cat NB1/EGPRS module.
config EXAMPLE_MODEM_DEVICE_SIM7600
bool "SIM7600"
help
SIM7600 is Multi-Band LTE-TDD/LTE-FDD/HSPA+ and GSM/GPRS/EDGE module
endchoice
config EXAMPLE_MODEM_PPP_APN
string "Set MODEM APN"
default "internet"
help
Set APN (Access Point Name), a logical name to choose data network
2021-04-18 20:19:53 +02:00
config EXAMPLE_SIM_PIN
string "Set SIM PIN"
default "1234"
2021-02-26 18:32:15 +01:00
help
2021-04-18 20:19:53 +02:00
Pin to unlock the SIM
2021-02-26 18:32:15 +01:00
endmenu