summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2021-01-19 21:38:53 +0100
committerJean-François Milants <jf@codingfield.com>2021-01-19 21:38:53 +0100
commitba03372f3b99798de2ce497d34f9ee5697e3be40 (patch)
tree3e5978e7181c6f30050019f13a69db61c4a4b876 /src
parentccbe2e8e1b15a09b4d9e51b54a5a2e4cdb847fdc (diff)
Music UUID must start with 00000000 instead of 00010000 (copy/paste error)
Diffstat (limited to 'src')
-rw-r--r--src/components/ble/MusicService.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ble/MusicService.h b/src/components/ble/MusicService.h
index 9c8116f0..172ab61c 100644
--- a/src/components/ble/MusicService.h
+++ b/src/components/ble/MusicService.h
@@ -73,7 +73,7 @@ namespace Pinetime {
Playing = 0x01
};
private:
- static constexpr uint8_t msId[2] = {0x01, 0x00};
+ static constexpr uint8_t msId[2] = {0x00, 0x00};
static constexpr uint8_t msEventCharId[2] = {0x01, 0x00};
static constexpr uint8_t msStatusCharId[2] = {0x02, 0x00};
static constexpr uint8_t msArtistCharId[2] = {0x03, 0x00};