summaryrefslogtreecommitdiff
path: root/src/components/ble/ImmediateAlertService.h
diff options
context:
space:
mode:
authorMichele Bini <michele.bini@gmail.com>2022-04-13 18:39:38 (GMT)
committerMichele Bini <michele.bini@gmail.com>2022-04-13 18:39:38 (GMT)
commit569e6fea41c13f33ad1374bb80ca489aaf4a7037 (patch)
treed3ec0a05dfaaae60346bca4413b312daa859b4e4 /src/components/ble/ImmediateAlertService.h
parent3115e7c58d3f4c936a68b3756fb8e37663b12830 (diff)
Sans notification (notification manager retained as it seems to be used by the dfu manager)
Diffstat (limited to 'src/components/ble/ImmediateAlertService.h')
-rw-r--r--src/components/ble/ImmediateAlertService.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/components/ble/ImmediateAlertService.h b/src/components/ble/ImmediateAlertService.h
deleted file mode 100644
index 1f778ac..0000000
--- a/src/components/ble/ImmediateAlertService.h
+++ /dev/null
@@ -1,39 +0,0 @@
-#pragma once
-#define min // workaround: nimble's min/max macros conflict with libstdc++
-#define max
-#include <host/ble_gap.h>
-#undef max
-#undef min
-
-namespace Pinetime {
- namespace System {
- class SystemTask;
- }
- namespace Controllers {
- class NotificationManager;
- class ImmediateAlertService {
- public:
- enum class Levels : uint8_t { NoAlert = 0, MildAlert = 1, HighAlert = 2 };
-
- ImmediateAlertService(Pinetime::System::SystemTask& systemTask, Pinetime::Controllers::NotificationManager& notificationManager);
- void Init();
- int OnAlertLevelChanged(uint16_t connectionHandle, uint16_t attributeHandle, ble_gatt_access_ctxt* context);
-
- private:
- Pinetime::System::SystemTask& systemTask;
- NotificationManager& notificationManager;
-
- static constexpr uint16_t immediateAlertServiceId {0x1802};
- static constexpr uint16_t alertLevelId {0x2A06};
-
- static constexpr ble_uuid16_t immediateAlertServiceUuid {.u {.type = BLE_UUID_TYPE_16}, .value = immediateAlertServiceId};
-
- static constexpr ble_uuid16_t alertLevelUuid {.u {.type = BLE_UUID_TYPE_16}, .value = alertLevelId};
-
- struct ble_gatt_chr_def characteristicDefinition[3];
- struct ble_gatt_svc_def serviceDefinition[2];
-
- uint16_t alertLevelHandle;
- };
- }
-}