mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
c226270138
Reuses most of the code from BG96. At this moment, this is not a perfect support for other modules as the generic handlers for most common modem functionality is not easily reusable. Refactoring to a fully independent modem component will solve this. Closes https://github.com/espressif/esp-idf/issues/5250
13 lines
368 B
CMake
13 lines
368 B
CMake
set(srcs "src/esp_modem.c"
|
|
"src/esp_modem_dce_service"
|
|
"src/esp_modem_netif.c"
|
|
"src/esp_modem_compat.c"
|
|
"src/sim800.c"
|
|
"src/sim7600.c"
|
|
"src/bg96.c")
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
INCLUDE_DIRS include
|
|
PRIV_INCLUDE_DIRS private_include
|
|
REQUIRES driver)
|