aboutsummaryrefslogtreecommitdiffstats
path: root/src/Components/Ble/DeviceInformationService.h
diff options
context:
space:
mode:
authorAvamander <avamander@gmail.com>2020-10-02 21:44:27 +0300
committerAvamander <avamander@gmail.com>2020-10-02 21:44:27 +0300
commit40a643d203d2d21834dd2b35d83419a56a3939b6 (patch)
tree522947ffe2e7c10f6e8c45a6e7d1e58d3521829b /src/Components/Ble/DeviceInformationService.h
parent455d8319e4af521de4e24cfa423a4c06c4378a8d (diff)
Renamed Components/ to components/
Diffstat (limited to 'src/Components/Ble/DeviceInformationService.h')
-rw-r--r--src/Components/Ble/DeviceInformationService.h76
1 files changed, 0 insertions, 76 deletions
diff --git a/src/Components/Ble/DeviceInformationService.h b/src/Components/Ble/DeviceInformationService.h
deleted file mode 100644
index 25ab8402..00000000
--- a/src/Components/Ble/DeviceInformationService.h
+++ /dev/null
@@ -1,76 +0,0 @@
-#pragma once
-#include <cstdint>
-#include <array>
-
-#include <host/ble_gap.h>
-#include <Version.h>
-
-namespace Pinetime {
- namespace Controllers {
- class DeviceInformationService {
- public:
- DeviceInformationService();
- void Init();
-
- int OnDeviceInfoRequested(uint16_t conn_handle, uint16_t attr_handle,
- struct ble_gatt_access_ctxt *ctxt);
-
- private:
- static constexpr uint16_t deviceInfoId {0x180a};
- static constexpr uint16_t manufacturerNameId {0x2a29};
- static constexpr uint16_t modelNumberId {0x2a24};
- static constexpr uint16_t serialNumberId {0x2a25};
- static constexpr uint16_t fwRevisionId {0x2a26};
- static constexpr uint16_t hwRevisionId {0x2a27};
- static constexpr uint16_t swRevisionId {0x2a28};
-
- static constexpr const char* manufacturerName = "PINE64";
- static constexpr const char* modelNumber = "PineTime";
- static constexpr const char* hwRevision = "1.0.0";
- static constexpr const char* serialNumber = "0";
- static constexpr const char* fwRevision = Version::VersionString();
- static constexpr const char* swRevision = "InfiniTime";
-
-
- static constexpr ble_uuid16_t deviceInfoUuid {
- .u { .type = BLE_UUID_TYPE_16 },
- .value = deviceInfoId
- };
-
- static constexpr ble_uuid16_t manufacturerNameUuid {
- .u { .type = BLE_UUID_TYPE_16 },
- .value = manufacturerNameId
- };
-
- static constexpr ble_uuid16_t modelNumberUuid {
- .u { .type = BLE_UUID_TYPE_16 },
- .value = modelNumberId
- };
-
- static constexpr ble_uuid16_t serialNumberUuid {
- .u { .type = BLE_UUID_TYPE_16 },
- .value = serialNumberId
- };
-
- static constexpr ble_uuid16_t fwRevisionUuid {
- .u { .type = BLE_UUID_TYPE_16 },
- .value = fwRevisionId
- };
-
- static constexpr ble_uuid16_t hwRevisionUuid {
- .u {.type = BLE_UUID_TYPE_16},
- .value = hwRevisionId
- };
-
- static constexpr ble_uuid16_t swRevisionUuid {
- .u {.type = BLE_UUID_TYPE_16},
- .value = swRevisionId
- };
-
- struct ble_gatt_chr_def characteristicDefinition[7];
- struct ble_gatt_svc_def serviceDefinition[2];
-
-
- };
- }
-} \ No newline at end of file