diff options
| author | JF002 <JF002@users.noreply.github.com> | 2020-05-16 16:15:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-16 16:15:38 +0200 |
| commit | d58f57b1b5a616debf893f209f1d96cac101489e (patch) | |
| tree | 9df19606a2615586bb533d39fb42c84be8774092 /src/Components/Ble/AlertNotificationService.h | |
| parent | 24a1f87a78584d3b67f07ea7972ea0d8e1f8167c (diff) | |
| parent | d6c6ac4cf5801e17caf7bfc0878423703ed0413b (diff) | |
Merge pull request #30 from JF002/nimble
Nimble
Diffstat (limited to 'src/Components/Ble/AlertNotificationService.h')
| -rw-r--r-- | src/Components/Ble/AlertNotificationService.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/Components/Ble/AlertNotificationService.h b/src/Components/Ble/AlertNotificationService.h new file mode 100644 index 00000000..53cb44cc --- /dev/null +++ b/src/Components/Ble/AlertNotificationService.h @@ -0,0 +1,39 @@ +#pragma once +#include <cstdint> +#include <array> +#include <host/ble_gap.h> + +namespace Pinetime { + namespace Controllers { + class AlertNotificationService { + public: + AlertNotificationService(Pinetime::System::SystemTask &systemTask, + Pinetime::Controllers::NotificationManager ¬ificationManager); + void Init(); + + int OnAlert(uint16_t conn_handle, uint16_t attr_handle, + struct ble_gatt_access_ctxt *ctxt); + + + private: + static constexpr uint16_t ansId {0x1811}; + static constexpr uint16_t ansCharId {0x2a46}; + + static constexpr ble_uuid16_t ansUuid { + .u { .type = BLE_UUID_TYPE_16 }, + .value = ansId + }; + + static constexpr ble_uuid16_t ansCharUuid { + .u { .type = BLE_UUID_TYPE_16 }, + .value = ansCharId + }; + + struct ble_gatt_chr_def characteristicDefinition[2]; + struct ble_gatt_svc_def serviceDefinition[2]; + + Pinetime::System::SystemTask &m_systemTask; + NotificationManager &m_notificationManager; + }; + } +} |
