diff options
| author | JF <JF002@users.noreply.github.com> | 2021-11-28 12:59:09 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-28 12:59:09 (GMT) |
| commit | 583c7ee22fdf576490169643762240bf9bb6b375 (patch) | |
| tree | c0bca6afa9b570bb2f78370c1096131acafd32d0 /src/components/ble/MotionService.cpp | |
| parent | f9613d28c06f96fbc93ccbc59a8f749bbc5f7fa5 (diff) | |
| parent | 4257073a02215e3f182d993765e4c5edef2d9845 (diff) | |
Merge branch 'develop' into motionservice_fix_typo_in_include
Diffstat (limited to 'src/components/ble/MotionService.cpp')
| -rw-r--r-- | src/components/ble/MotionService.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/ble/MotionService.cpp b/src/components/ble/MotionService.cpp index 5069305..6381915 100644 --- a/src/components/ble/MotionService.cpp +++ b/src/components/ble/MotionService.cpp @@ -1,11 +1,11 @@ -#include "MotionService.h" +#include "components/ble/MotionService.h" #include "components/motion/MotionController.h" #include "systemtask/SystemTask.h" using namespace Pinetime::Controllers; namespace { - // 0002yyxx-78fc-48fe-8e23-433b3a1942d0 + // 0003yyxx-78fc-48fe-8e23-433b3a1942d0 constexpr ble_uuid128_t CharUuid(uint8_t x, uint8_t y) { return ble_uuid128_t{ .u = {.type = BLE_UUID_TYPE_128}, @@ -13,7 +13,7 @@ namespace { }; } - // 00020000-78fc-48fe-8e23-433b3a1942d0 + // 00030000-78fc-48fe-8e23-433b3a1942d0 constexpr ble_uuid128_t BaseUuid() { return CharUuid(0x00, 0x00); } |
