-
Notifications
You must be signed in to change notification settings - Fork 258
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Integrate build definitions from idf - Changes CMakeLists to allow import - Added host test from idf - Added test code from idf
- Loading branch information
1 parent
6c3b7e2
commit cc12754
Showing
28 changed files
with
56 additions
and
1,408 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
set(srcs mqtt_client.c lib/mqtt_msg.c lib/mqtt_outbox.c lib/platform_esp32_idf.c) | ||
|
||
if(CONFIG_MQTT_PROTOCOL_5) | ||
list(APPEND srcs lib/mqtt5_msg.c mqtt5_client.c) | ||
endif() | ||
|
||
list(TRANSFORM srcs PREPEND ${CMAKE_CURRENT_LIST_DIR}/) | ||
idf_component_register(SRCS "${srcs}" | ||
INCLUDE_DIRS ${CMAKE_CURRENT_LIST_DIR}/include | ||
PRIV_INCLUDE_DIRS ${CMAKE_CURRENT_LIST_DIR}/lib/include | ||
REQUIRES esp_event tcp_transport | ||
PRIV_REQUIRES esp_timer http_parser esp_hw_support heap | ||
KCONFIG ${CMAKE_CURRENT_LIST_DIR}/Kconfig | ||
) | ||
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format") | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Submodule esp-mqtt
deleted from
ae53d7
This file was deleted.
Oops, something went wrong.
133 changes: 0 additions & 133 deletions
133
components/mqtt/host_test/mocks/include/freertos/FreeRTOSConfig.h
This file was deleted.
Oops, something went wrong.
177 changes: 0 additions & 177 deletions
177
components/mqtt/host_test/mocks/include/freertos/portmacro.h
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.