mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
6cc07ecd58
* esp_modem cxx example to use esp_event_cxx (using only sync event) * Use 0.1.9 version of the esp_modem to support CMake 3.5 * Add supported targets ESP32 and ESP32s2 Closes https://github.com/espressif/esp-idf/issues/1847 Closes https://github.com/espressif/esp-idf/issues/4688 Closes https://github.com/espressif/esp-idf/issues/6637 Closes https://github.com/espressif/esp-idf/issues/5754 Closes https://github.com/espressif/esp-idf/issues/5722
43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
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 a 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
|
|
|
|
config EXAMPLE_NEED_SIM_PIN
|
|
bool "SIM PIN needed"
|
|
default n
|
|
help
|
|
Enable to set SIM PIN before starting the example
|
|
|
|
config EXAMPLE_SIM_PIN
|
|
string "Set SIM PIN"
|
|
default "1234"
|
|
depends on EXAMPLE_NEED_SIM_PIN
|
|
help
|
|
Pin to unlock the SIM
|
|
|
|
endmenu
|