-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for BLE extended advertisements (#30)
* Add support for BLE extended advertisements * Add RI_ADV_EXTENDED_ENABLED=1 * Add support for ADV_RPRT2 format, configure max ext adv len, refactoring * Add support for ADV_RPRT2 format, configure max ext adv len, refactoring
- Loading branch information
1 parent
dd29ebf
commit 8395d9f
Showing
9 changed files
with
114 additions
and
90 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 |
---|---|---|
|
@@ -52,3 +52,5 @@ Mkfile.old | |
dkms.conf | ||
output/ | ||
build/ | ||
cmake-build* | ||
.idea/ |
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
Submodule ruuvi.endpoints.c
updated
26 files
+8 −10 | .github/workflows/sonar-scan.yml | |
+21 −7 | CMakeLists.txt | |
+1 −1 | CMock | |
+46 −4 | Makefile | |
+5 −0 | project.yml | |
+139 −0 | project_ext_adv_48.yml | |
+139 −0 | project_ext_adv_max.yml | |
+7 −9 | src/ruuvi_endpoint_3.c | |
+10 −1 | src/ruuvi_endpoint_5.c | |
+31 −3 | src/ruuvi_endpoint_6.c | |
+8 −0 | src/ruuvi_endpoint_6.h | |
+212 −0 | src/ruuvi_endpoint_c5.c | |
+91 −0 | src/ruuvi_endpoint_c5.h | |
+242 −114 | src/ruuvi_endpoint_ca_uart.c | |
+225 −52 | src/ruuvi_endpoint_ca_uart.h | |
+583 −0 | src/ruuvi_endpoint_e0.c | |
+201 −0 | src/ruuvi_endpoint_e0.h | |
+550 −0 | src/ruuvi_endpoint_f0.c | |
+167 −0 | src/ruuvi_endpoint_f0.h | |
+2 −2 | src/ruuvi_endpoints.c | |
+4 −1 | src/ruuvi_endpoints.h | |
+17 −0 | test/test_ruuvi_endpoint_6.c | |
+209 −0 | test/test_ruuvi_endpoint_c5.c | |
+982 −202 | test/test_ruuvi_endpoint_ca_uart.c | |
+608 −0 | test/test_ruuvi_endpoint_e0.c | |
+538 −0 | test/test_ruuvi_endpoint_f0.c |
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
Oops, something went wrong.