diff options
| author | JF <jf@codingfield.com> | 2020-05-24 16:51:50 +0200 |
|---|---|---|
| committer | JF <jf@codingfield.com> | 2020-05-24 16:51:50 +0200 |
| commit | 073717980f5c00f553ac3b58a50b792b32a14c7a (patch) | |
| tree | 8eeafef1f4150a1cf238ee80e53c8901b0ec67af /src/Components/Ble/CurrentTimeService.h | |
| parent | 331481cd0c6ba804860f7cdbd5110a87ff0160fe (diff) | |
| parent | be1ad9b07083e656a649d223750ff4b14b781b7b (diff) | |
Merge develop
Diffstat (limited to 'src/Components/Ble/CurrentTimeService.h')
| -rw-r--r-- | src/Components/Ble/CurrentTimeService.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/Components/Ble/CurrentTimeService.h b/src/Components/Ble/CurrentTimeService.h new file mode 100644 index 00000000..58bc5ba6 --- /dev/null +++ b/src/Components/Ble/CurrentTimeService.h @@ -0,0 +1,48 @@ +#pragma once +#include <cstdint> +#include <array> +#include <Components/DateTime/DateTimeController.h> +#include <host/ble_gap.h> + +namespace Pinetime { + namespace Controllers { + class CurrentTimeService { + public: + CurrentTimeService(DateTime &dateTimeController); + void Init(); + + int OnTimeAccessed(uint16_t conn_handle, uint16_t attr_handle, + struct ble_gatt_access_ctxt *ctxt); + + private: + static constexpr uint16_t ctsId {0x1805}; + static constexpr uint16_t ctsCharId {0x2a2b}; + + static constexpr ble_uuid16_t ctsUuid { + .u { .type = BLE_UUID_TYPE_16 }, + .value = ctsId + }; + + static constexpr ble_uuid16_t ctChrUuid { + .u { .type = BLE_UUID_TYPE_16 }, + .value = ctsCharId + }; + + struct ble_gatt_chr_def characteristicDefinition[2]; + struct ble_gatt_svc_def serviceDefinition[2]; + + typedef struct __attribute__((packed)) { + uint16_t year; + uint8_t month; + uint8_t dayofmonth; + uint8_t hour; + uint8_t minute; + uint8_t second; + uint8_t millis; + uint8_t reason; + } CtsData; + + DateTime &m_dateTimeController; + }; + } +} |
