Merge pull request #832 from mabuch/fix-doc-motionservice-uuid

fix Motion Service UUID in doc and code comments
This commit is contained in:
JF
2021-11-28 13:21:08 +01:00
committed by GitHub
2 changed files with 5 additions and 5 deletions

View File

@@ -5,7 +5,7 @@
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);
}