summaryrefslogtreecommitdiff
path: root/src/components/ble/weather/WeatherService.h
diff options
context:
space:
mode:
authorAvamander <avamander@gmail.com>2021-11-28 13:33:06 (GMT)
committerAvamander <avamander@gmail.com>2021-12-04 20:03:40 (GMT)
commitffb17357e74fd80a0381361a5cbc6bc481d28000 (patch)
tree35ecac9774eb91200d73f2a7ff967ed1290ba709 /src/components/ble/weather/WeatherService.h
parented6f0aade4db811b5013441c57944baff4528938 (diff)
Fixed a few compilation errors, fixed UUID.
Diffstat (limited to 'src/components/ble/weather/WeatherService.h')
-rw-r--r--src/components/ble/weather/WeatherService.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ble/weather/WeatherService.h b/src/components/ble/weather/WeatherService.h
index 5504ea4..7bf60ee 100644
--- a/src/components/ble/weather/WeatherService.h
+++ b/src/components/ble/weather/WeatherService.h
@@ -88,7 +88,7 @@ namespace Pinetime {
// 0003yyxx-78fc-48fe-8e23-433b3a1942d0
static 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, 0x03, 0x00}};
+ .value = {0xd0, 0x42, 0x19, 0x3a, 0x3b, 0x43, 0x23, 0x8e, 0xfe, 0x48, 0xfc, 0x78, y, x, 0x03, 0x00}};
}
ble_uuid128_t weatherUuid {BaseUuid()};