-
Notifications
You must be signed in to change notification settings - Fork 38
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 broadcasting Ruuvi Sensor Data service UUID (and any …
…other service UUID) (#356)
- Loading branch information
Showing
17 changed files
with
256 additions
and
37 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
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 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 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 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 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 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 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 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,12 @@ | ||
#ifndef APPLICATION_MODE_UUID_H | ||
#define APPLICATION_MODE_UUID_H | ||
|
||
#define APP_FW_VARIANT "+uuid" | ||
|
||
#define RE_5_ENABLED (0U) | ||
#define RE_C5_ENABLED (1U) | ||
|
||
#define APP_BLE_INTERVAL_MS (1285U) | ||
#define APP_NUM_REPEATS (7U) // ~9 s | ||
|
||
#endif |
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 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 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 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.drivers.c
updated
17 files
Submodule ruuvi.endpoints.c
updated
29 files
+5 −5 | .github/workflows/ceedling.yml | |
+4 −26 | .github/workflows/gh-pages-check.yml | |
+5 −13 | .github/workflows/gh-pages-push.yml | |
+13 −17 | .github/workflows/sonar-scan.yml | |
+5 −2 | .gitignore | |
+3 −0 | .gitmodules | |
+3 −0 | CHANGELOG.md | |
+15 −0 | CMakeLists.txt | |
+1 −0 | CMock | |
+173 −61 | Doxyfile | |
+55 −32 | Makefile | |
+0 −212 | PVS-Studio.cfg | |
+6 −4 | README.md | |
+0 −2 | component.mk | |
+5 −1 | project.yml | |
+0 −0 | src/component.mk | |
+233 −7 | src/ruuvi_endpoint_5.c | |
+28 −0 | src/ruuvi_endpoint_5.h | |
+438 −0 | src/ruuvi_endpoint_6.c | |
+169 −0 | src/ruuvi_endpoint_6.h | |
+203 −0 | src/ruuvi_endpoint_c5.c | |
+91 −0 | src/ruuvi_endpoint_c5.h | |
+60 −0 | src/ruuvi_endpoint_ca_uart.c | |
+23 −3 | src/ruuvi_endpoint_ca_uart.h | |
+27 −4 | src/ruuvi_endpoints.h | |
+90 −0 | test/test_ruuvi_endpoint_5.c | |
+364 −0 | test/test_ruuvi_endpoint_6.c | |
+209 −0 | test/test_ruuvi_endpoint_c5.c | |
+124 −12 | test/test_ruuvi_endpoint_ca_uart.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.