forked from aws/aws-iot-device-sdk-embedded-C
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Tiangang Song
committed
Dec 2, 2020
1 parent
cadb5c6
commit 9b0fb3b
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule ota
updated
23 files
+49 −13 | .github/workflows/ci.yml | |
+71 −117 | source/include/ota.h | |
+15 −9 | source/include/ota_http_interface.h | |
+2 −2 | source/include/ota_http_private.h | |
+23 −17 | source/include/ota_mqtt_interface.h | |
+44 −24 | source/include/ota_os_interface.h | |
+45 −25 | source/include/ota_platform_interface.h | |
+458 −415 | source/ota.c | |
+43 −38 | source/ota_http.c | |
+3 −3 | source/ota_interface.c | |
+173 −134 | source/ota_mqtt.c | |
+52 −72 | source/portable/os/ota_os_freertos.c | |
+21 −21 | source/portable/os/ota_os_freertos.h | |
+101 −82 | source/portable/os/ota_os_posix.c | |
+21 −21 | source/portable/os/ota_os_posix.h | |
+2 −1 | test/CMakeLists.txt | |
+2 −28 | test/unit-test/CMakeLists.txt | |
+23 −1 | test/unit-test/ota_config.h | |
+36 −47 | test/unit-test/ota_os_posix_utest.c | |
+343 −231 | test/unit-test/ota_utest.c | |
+57 −44 | tools/cmock/coverage.cmake | |
+4 −0 | tools/coverity/misra.config | |
+97 −18 | tools/lexicon.txt |