diff options
| author | Adam Pigg <adam@piggz.co.uk> | 2020-04-28 10:21:35 (GMT) |
|---|---|---|
| committer | Adam Pigg <adam@piggz.co.uk> | 2020-05-05 19:58:15 (GMT) |
| commit | b760b3f98ca786bbe0d586e30fed2847525b0ae4 (patch) | |
| tree | a6a5b52ac753245fe4c39b3956c54d4f71a63fb6 /src/Components/Ble/PinetimeService.h | |
| parent | 332b51464a75e40f2e306c50092735891acfe406 (diff) | |
Add a simple service to allow setting the time from a controlling
application
Diffstat (limited to 'src/Components/Ble/PinetimeService.h')
| -rw-r--r-- | src/Components/Ble/PinetimeService.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/Components/Ble/PinetimeService.h b/src/Components/Ble/PinetimeService.h new file mode 100644 index 0000000..d4f8ee2 --- /dev/null +++ b/src/Components/Ble/PinetimeService.h @@ -0,0 +1,50 @@ +#pragma once +#include <cstdint> +#include <array> +#include <Components/DateTime/DateTimeController.h> +#include <host/ble_gap.h> + +namespace Pinetime { + namespace Controllers { + class PinetimeService { + public: + PinetimeService(); + void Init(); + + int OnTimeAccessed(uint16_t conn_handle, uint16_t attr_handle, + struct ble_gatt_access_ctxt *ctxt); + + void setDateTimeController(DateTime *dateTimeController); + + private: + static constexpr uint16_t pinetimeId {0x6666}; + static constexpr uint16_t timeCharId {0x6667}; + + static constexpr ble_uuid16_t pinetimeUuid { + .u { .type = BLE_UUID_TYPE_16 }, + .value = pinetimeId + }; + + static constexpr ble_uuid16_t timeUuid { + .u { .type = BLE_UUID_TYPE_16 }, + .value = timeCharId + }; + + 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 = nullptr; + }; + } +} |
