summaryrefslogtreecommitdiff
path: root/src/components/ble/MotionService.cpp
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2021-10-20 20:52:04 +0200
committerJean-François Milants <jf@codingfield.com>2021-10-20 20:52:04 +0200
commitb3a82288997556b04a64d452ec2067747f1fb706 (patch)
tree0e31806c6e81c98f08de157835754c695e73c094 /src/components/ble/MotionService.cpp
parent2c5015add7a67f950e7f5f33e5bc84b7275b4ced (diff)
Add mention to Call characteristic (which was missing in the doc) and change the UUID of the new Motion service from 00020000-* to 00030000-*.
Diffstat (limited to 'src/components/ble/MotionService.cpp')
-rw-r--r--src/components/ble/MotionService.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ble/MotionService.cpp b/src/components/ble/MotionService.cpp
index 2bb5289c..e305021a 100644
--- a/src/components/ble/MotionService.cpp
+++ b/src/components/ble/MotionService.cpp
@@ -9,7 +9,7 @@ namespace {
constexpr ble_uuid128_t CharUuid(uint8_t x, uint8_t y) {
return ble_uuid128_t{
.u = {.type = BLE_UUID_TYPE_128},
- .value = { 0xd0, 0x42, 0x19, 0x3a, 0x3b, 0x43, 0x23, 0x8e, 0xfe, 0x48, 0xfc, 0x78, x, y, 0x02, 0x00 }
+ .value = { 0xd0, 0x42, 0x19, 0x3a, 0x3b, 0x43, 0x23, 0x8e, 0xfe, 0x48, 0xfc, 0x78, x, y, 0x03, 0x00 }
};
}