BLE CTS: fixed signedness of timezone

This commit is contained in:
uli
2022-11-23 12:41:28 +01:00
committed by JF
parent f1d2a8ee50
commit 02116a2fd4
3 changed files with 9 additions and 9 deletions

View File

@@ -47,8 +47,8 @@ namespace Pinetime {
} CtsCurrentTimeData;
typedef struct __attribute__((packed)) {
uint8_t timezone;
uint8_t dst;
int8_t timezone;
int8_t dst;
} CtsLocalTimeData;
DateTime& m_dateTimeController;