mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-30 10:47:29 +02:00
Merge pull request #73 from Lapshin/fix/ignore-format-warnings
esp_modem: Ignore format warnings (IDFGH-7760)
This commit is contained in:
@ -44,3 +44,5 @@ if(${target} STREQUAL "linux")
|
|||||||
# This is needed for ESP_LOGx() macros, as integer formats differ on ESP32(..) and x64
|
# This is needed for ESP_LOGx() macros, as integer formats differ on ESP32(..) and x64
|
||||||
set_target_properties(${COMPONENT_LIB} PROPERTIES COMPILE_FLAGS -Wno-format)
|
set_target_properties(${COMPONENT_LIB} PROPERTIES COMPILE_FLAGS -Wno-format)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
|
||||||
|
@ -4,3 +4,4 @@ idf_component_register(SRCS "modem_console_main.cpp"
|
|||||||
"ping_handle.c"
|
"ping_handle.c"
|
||||||
REQUIRES console esp_http_client nvs_flash esp_modem esp_modem_usb_dte
|
REQUIRES console esp_http_client nvs_flash esp_modem esp_modem_usb_dte
|
||||||
INCLUDE_DIRS ".")
|
INCLUDE_DIRS ".")
|
||||||
|
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
idf_component_register(SRCS "pppos_client_main.c"
|
idf_component_register(SRCS "pppos_client_main.c"
|
||||||
INCLUDE_DIRS ".")
|
INCLUDE_DIRS ".")
|
||||||
|
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
version: "0.1.17"
|
version: "0.1.18"
|
||||||
description: esp modem
|
description: esp modem
|
||||||
url: https://github.com/espressif/esp-protocols/tree/master/components/esp_modem
|
url: https://github.com/espressif/esp-protocols/tree/master/components/esp_modem
|
||||||
dependencies:
|
dependencies:
|
||||||
|
Reference in New Issue
Block a user