generated from amazon-archives/__template_MIT-0
-
Notifications
You must be signed in to change notification settings - Fork 58
Update libraries to LTS 2.0 version. #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
e630c0d
Update LTS 2.0 libraries.
ActoryOu 8e27b2a
Update esp-aws-iot to LTA 2.0 libraries + tinycbor.
ActoryOu c03a592
Update README for ESP-IDF v4.4.2 after updating LTS 2.0 libraries.
ActoryOu 3174a02
Remove tinycbor in esp-aws-iot and use cbor in esp-idf directly.
ActoryOu e7bf6a5
Add integration submodule and add integration test into project.
ActoryOu 22c6496
Remove redundant integration submodule pointer
ActoryOu 83230e2
Update coreMQTT/coreMQTT-Agent/FreeRTOS-Libraries-Integration-Tests.
ActoryOu 3da53bf
Update LTS2 libraries.
ActoryOu be11beb
Fix errors after updating LTS libraries.
ActoryOu 2c46217
Add IDT configurations.
ActoryOu 5328c1e
Update document to run IDT.
ActoryOu 20fd878
Use pdMS_TO_TICKS in MqttTestGetTimeMs.
ActoryOu 9071149
Remove non-test logs for IDT parser.
ActoryOu ed2656a
Update getting started guide document.
ActoryOu b08c097
Update getting started guide document.
ActoryOu 98a809e
Update getting started guide document.
ActoryOu db5f9e3
Update getting started guide document.
ActoryOu bbd015c
Update getting started guide document.
ActoryOu 493f283
Update getting started guide document.
ActoryOu bd9ee0d
Add qualification configurations into kconfig.
ActoryOu 5587aeb
Update getting started guide.
ActoryOu e756d35
Fix get time function, run vStartSubscribePublishUnsubscribeDemo befo…
ActoryOu fdd48a7
Disable ota_pal log while testing with IDT
ActoryOu fb15b31
Update userdata.json.
ActoryOu 11b2142
Disable AWS_OTA logs while running IDT.
ActoryOu fb43ddc
update submodule pointer
awsblake 06699fb
update submodule pointer
awsblake fe7b864
Update to 202210.01-LTS version.
ActoryOu 5161246
Merge conflict
ActoryOu cf6ac33
Update changelog.
ActoryOu aff9dae
Update submodule pointer to Espressif/esp-aws-iot and FreeRTOS/FreeRT…
ActoryOu ad940c3
Update MQTT_TEST_PROCESS_LOOP_TIMEOUT_MS definition.
ActoryOu 991e863
Update changelog for 202212.00 release
awsblake File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -1,6 +1,9 @@ | ||
| [submodule "components/esp-aws-iot"] | ||
| path = components/esp-aws-iot | ||
| url = https://github.com/espressif/esp-aws-iot.git | ||
| [submodule "components/esp_secure_cert_mgr"] | ||
| path = components/esp_secure_cert_mgr | ||
| url = https://github.com/espressif/esp_secure_cert_mgr.git | ||
| [submodule "components/esp-aws-iot"] | ||
| path = components/esp-aws-iot | ||
| url = https://github.com/espressif/esp-aws-iot | ||
| [submodule "components/FreeRTOS-Libraries-Integration-Tests/FreeRTOS-Libraries-Integration-Tests"] | ||
| path = components/FreeRTOS-Libraries-Integration-Tests/FreeRTOS-Libraries-Integration-Tests | ||
| url = https://github.com/FreeRTOS/FreeRTOS-Libraries-Integration-Tests | ||
This file contains hidden or 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 contains hidden or 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
51 changes: 51 additions & 0 deletions
51
components/FreeRTOS-Libraries-Integration-Tests/CMakeLists.txt
This file contains hidden or 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,51 @@ | ||
| # This gives QUALIFICATION_TEST_SOURCES, and QUALIFICATION_TEST_INCLUDE_DIRS | ||
| include(${CMAKE_CURRENT_LIST_DIR}/FreeRTOS-Libraries-Integration-Tests/qualification_test.cmake) | ||
|
|
||
| # This gives TRANSPORT_TEST_SOURCES, and TRANSPORT_TEST_INCLUDE_DIRS | ||
| include(${CMAKE_CURRENT_LIST_DIR}/FreeRTOS-Libraries-Integration-Tests/src/transport_interface_test.cmake) | ||
|
|
||
| # This gives MQTT_TEST_SOURCES, and MQTT_TEST_INCLUDE_DIRS | ||
| include(${CMAKE_CURRENT_LIST_DIR}/FreeRTOS-Libraries-Integration-Tests/src/mqtt_test.cmake) | ||
|
|
||
| # This gives OTA_PAL_TEST_SOURCES, and OTA_PAL_TEST_INCLUDE_DIRS | ||
| include(${CMAKE_CURRENT_LIST_DIR}/FreeRTOS-Libraries-Integration-Tests/src/ota_pal_test.cmake) | ||
|
|
||
| # This gives PKCS11_TEST_SOURCES, and PKCS11_TEST_INCLUDE_DIRS | ||
| include(${CMAKE_CURRENT_LIST_DIR}/FreeRTOS-Libraries-Integration-Tests/src/pkcs11_test.cmake) | ||
|
|
||
| set(IDT_INCLUDE_DIRS | ||
| ${QUALIFICATION_TEST_INCLUDE_DIRS} | ||
| ${TRANSPORT_TEST_INCLUDE_DIRS} | ||
| ${MQTT_TEST_INCLUDE_DIRS} | ||
| ${OTA_PAL_TEST_INCLUDE_DIRS} | ||
| ${PKCS11_TEST_INCLUDE_DIRS} | ||
| ${CMAKE_CURRENT_LIST_DIR}/config | ||
| ) | ||
|
|
||
| set(IDT_SRCS | ||
| ${QUALIFICATION_TEST_SOURCES} | ||
| ${TRANSPORT_TEST_SOURCES} | ||
| ${MQTT_TEST_SOURCES} | ||
| ${OTA_PAL_TEST_SOURCES} | ||
| ${PKCS11_TEST_SOURCES} | ||
| ${CMAKE_CURRENT_LIST_DIR}/port/platform_function.c | ||
| ${CMAKE_CURRENT_LIST_DIR}/../esp-aws-iot/libraries/corePKCS11/corePKCS11/source/dependency/3rdparty/mbedtls_utils/mbedtls_utils.c | ||
| ) | ||
|
|
||
| set(IDT_REQUIRES | ||
| unity | ||
| coreMQTT | ||
| coreHTTP | ||
| freertos | ||
| corePKCS11 | ||
| ota-for-aws-iot-embedded-sdk | ||
| ) | ||
|
|
||
| idf_component_register( | ||
| SRCS | ||
| ${IDT_SRCS} | ||
| INCLUDE_DIRS | ||
| ${IDT_INCLUDE_DIRS} | ||
| REQUIRES | ||
| ${IDT_REQUIRES} | ||
| ) |
1 change: 1 addition & 0 deletions
1
components/FreeRTOS-Libraries-Integration-Tests/FreeRTOS-Libraries-Integration-Tests
Submodule FreeRTOS-Libraries-Integration-Tests
added at
4ec824
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.