Merge pull request #27 from piggz/pinetime-service
Basic time setting and notification service
This commit is contained in:
commit
c55dd06f1a
|
@ -319,6 +319,8 @@ list(APPEND SOURCE_FILES
|
||||||
Components/Ble/DeviceInformationService.cpp
|
Components/Ble/DeviceInformationService.cpp
|
||||||
Components/Ble/CurrentTimeClient.cpp
|
Components/Ble/CurrentTimeClient.cpp
|
||||||
Components/Ble/AlertNotificationClient.cpp
|
Components/Ble/AlertNotificationClient.cpp
|
||||||
|
Components/Ble/CurrentTimeService.cpp
|
||||||
|
Components/Ble/AlertNotificationService.cpp
|
||||||
drivers/Cst816s.cpp
|
drivers/Cst816s.cpp
|
||||||
FreeRTOS/port.c
|
FreeRTOS/port.c
|
||||||
FreeRTOS/port_cmsis_systick.c
|
FreeRTOS/port_cmsis_systick.c
|
||||||
|
|
73
src/Components/Ble/AlertNotificationService.cpp
Normal file
73
src/Components/Ble/AlertNotificationService.cpp
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
|
||||||
|
#include <hal/nrf_rtc.h>
|
||||||
|
#include "NotificationManager.h"
|
||||||
|
#include <SystemTask/SystemTask.h>
|
||||||
|
|
||||||
|
#include "AlertNotificationService.h"
|
||||||
|
|
||||||
|
using namespace Pinetime::Controllers;
|
||||||
|
|
||||||
|
constexpr ble_uuid16_t AlertNotificationService::ansUuid;
|
||||||
|
constexpr ble_uuid16_t AlertNotificationService::ansCharUuid;
|
||||||
|
|
||||||
|
|
||||||
|
int AlertNotificationCallback(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg) {
|
||||||
|
auto anService = static_cast<AlertNotificationService*>(arg);
|
||||||
|
return anService->OnAlert(conn_handle, attr_handle, ctxt);
|
||||||
|
}
|
||||||
|
|
||||||
|
void AlertNotificationService::Init() {
|
||||||
|
ble_gatts_count_cfg(serviceDefinition);
|
||||||
|
ble_gatts_add_svcs(serviceDefinition);
|
||||||
|
}
|
||||||
|
|
||||||
|
AlertNotificationService::AlertNotificationService ( Pinetime::System::SystemTask& systemTask, Pinetime::Controllers::NotificationManager& notificationManager ) : m_systemTask{systemTask}, m_notificationManager{notificationManager},
|
||||||
|
characteristicDefinition{
|
||||||
|
{
|
||||||
|
.uuid = (ble_uuid_t *) &ansCharUuid,
|
||||||
|
.access_cb = AlertNotificationCallback,
|
||||||
|
.arg = this,
|
||||||
|
.flags = BLE_GATT_CHR_F_WRITE
|
||||||
|
},
|
||||||
|
{
|
||||||
|
0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
serviceDefinition{
|
||||||
|
{
|
||||||
|
/* Device Information Service */
|
||||||
|
.type = BLE_GATT_SVC_TYPE_PRIMARY,
|
||||||
|
.uuid = (ble_uuid_t *) &ansUuid,
|
||||||
|
.characteristics = characteristicDefinition
|
||||||
|
},
|
||||||
|
{
|
||||||
|
0
|
||||||
|
},
|
||||||
|
}
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
int AlertNotificationService::OnAlert(uint16_t conn_handle, uint16_t attr_handle,
|
||||||
|
struct ble_gatt_access_ctxt *ctxt) {
|
||||||
|
|
||||||
|
if (ctxt->op == BLE_GATT_ACCESS_OP_WRITE_CHR) {
|
||||||
|
size_t notifSize = OS_MBUF_PKTLEN(ctxt->om);
|
||||||
|
uint8_t data[notifSize + 1];
|
||||||
|
data[notifSize] = '\0';
|
||||||
|
os_mbuf_copydata(ctxt->om, 0, notifSize, data);
|
||||||
|
char *s = (char *) &data[3];
|
||||||
|
NRF_LOG_INFO("DATA : %s", s);
|
||||||
|
|
||||||
|
for(int i = 0; i <= notifSize; i++)
|
||||||
|
{
|
||||||
|
if(s[i] == 0x00)
|
||||||
|
{
|
||||||
|
s[i] = 0x0A;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
m_notificationManager.Push(Pinetime::Controllers::NotificationManager::Categories::SimpleAlert, s, notifSize + 1);
|
||||||
|
m_systemTask.PushMessage(Pinetime::System::SystemTask::Messages::OnNewNotification);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
39
src/Components/Ble/AlertNotificationService.h
Normal file
39
src/Components/Ble/AlertNotificationService.h
Normal file
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
83
src/Components/Ble/CurrentTimeService.cpp
Normal file
83
src/Components/Ble/CurrentTimeService.cpp
Normal file
|
@ -0,0 +1,83 @@
|
||||||
|
#include "CurrentTimeService.h"
|
||||||
|
#include <hal/nrf_rtc.h>
|
||||||
|
|
||||||
|
using namespace Pinetime::Controllers;
|
||||||
|
|
||||||
|
constexpr ble_uuid16_t CurrentTimeService::ctsUuid;
|
||||||
|
constexpr ble_uuid16_t CurrentTimeService::ctChrUuid;
|
||||||
|
|
||||||
|
|
||||||
|
int CTSCallback(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg) {
|
||||||
|
auto cts = static_cast<CurrentTimeService*>(arg);
|
||||||
|
return cts->OnTimeAccessed(conn_handle, attr_handle, ctxt);
|
||||||
|
}
|
||||||
|
|
||||||
|
void CurrentTimeService::Init() {
|
||||||
|
ble_gatts_count_cfg(serviceDefinition);
|
||||||
|
ble_gatts_add_svcs(serviceDefinition);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int CurrentTimeService::OnTimeAccessed(uint16_t conn_handle, uint16_t attr_handle,
|
||||||
|
struct ble_gatt_access_ctxt *ctxt) {
|
||||||
|
|
||||||
|
NRF_LOG_INFO("Setting time...");
|
||||||
|
|
||||||
|
if (ctxt->op == BLE_GATT_ACCESS_OP_WRITE_CHR) {
|
||||||
|
CtsData result;
|
||||||
|
os_mbuf_copydata(ctxt->om, 0, sizeof(CtsData), &result);
|
||||||
|
|
||||||
|
NRF_LOG_INFO("Received data: %d-%d-%d %d:%d:%d", result.year,
|
||||||
|
result.month, result.dayofmonth,
|
||||||
|
result.hour, result.minute, result.second);
|
||||||
|
|
||||||
|
m_dateTimeController.SetTime(result.year, result.month, result.dayofmonth,
|
||||||
|
0, result.hour, result.minute, result.second, nrf_rtc_counter_get(portNRF_RTC_REG));
|
||||||
|
|
||||||
|
} else if (ctxt->op == BLE_GATT_ACCESS_OP_READ_CHR) {
|
||||||
|
CtsData currentDateTime;
|
||||||
|
currentDateTime.year = m_dateTimeController.Year();
|
||||||
|
currentDateTime.month = static_cast<u_int8_t>(m_dateTimeController.Month());
|
||||||
|
currentDateTime.dayofmonth = m_dateTimeController.Day();
|
||||||
|
currentDateTime.hour = m_dateTimeController.Hours();
|
||||||
|
currentDateTime.minute = m_dateTimeController.Minutes();
|
||||||
|
currentDateTime.second = m_dateTimeController.Seconds();
|
||||||
|
currentDateTime.millis = 0;
|
||||||
|
|
||||||
|
|
||||||
|
int res = os_mbuf_append(ctxt->om, ¤tDateTime, sizeof(CtsData));
|
||||||
|
return (res == 0) ? 0 : BLE_ATT_ERR_INSUFFICIENT_RES;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
CurrentTimeService::CurrentTimeService(DateTime &dateTimeController) : m_dateTimeController{dateTimeController},
|
||||||
|
characteristicDefinition{
|
||||||
|
{
|
||||||
|
.uuid = (ble_uuid_t *) &ctChrUuid,
|
||||||
|
.access_cb = CTSCallback,
|
||||||
|
|
||||||
|
.arg = this,
|
||||||
|
.flags = BLE_GATT_CHR_F_WRITE | BLE_GATT_CHR_F_READ
|
||||||
|
},
|
||||||
|
{
|
||||||
|
0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
serviceDefinition{
|
||||||
|
{
|
||||||
|
/* Device Information Service */
|
||||||
|
.type = BLE_GATT_SVC_TYPE_PRIMARY,
|
||||||
|
.uuid = (ble_uuid_t *) &ctsUuid,
|
||||||
|
.characteristics = characteristicDefinition
|
||||||
|
},
|
||||||
|
{
|
||||||
|
0
|
||||||
|
},
|
||||||
|
}
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
48
src/Components/Ble/CurrentTimeService.h
Normal file
48
src/Components/Ble/CurrentTimeService.h
Normal file
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
|
@ -30,7 +30,9 @@ NimbleController::NimbleController(Pinetime::System::SystemTask& systemTask,
|
||||||
dateTimeController{dateTimeController},
|
dateTimeController{dateTimeController},
|
||||||
notificationManager{notificationManager},
|
notificationManager{notificationManager},
|
||||||
currentTimeClient{dateTimeController},
|
currentTimeClient{dateTimeController},
|
||||||
alertNotificationClient{systemTask, notificationManager} {
|
alertNotificationClient{systemTask, notificationManager},
|
||||||
|
anService{systemTask, notificationManager},
|
||||||
|
currentTimeService{dateTimeController} {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,6 +76,10 @@ void NimbleController::Init() {
|
||||||
|
|
||||||
deviceInformationService.Init();
|
deviceInformationService.Init();
|
||||||
currentTimeClient.Init();
|
currentTimeClient.Init();
|
||||||
|
currentTimeService.Init();
|
||||||
|
|
||||||
|
anService.Init();
|
||||||
|
|
||||||
int res;
|
int res;
|
||||||
res = ble_hs_util_ensure_addr(0);
|
res = ble_hs_util_ensure_addr(0);
|
||||||
res = ble_hs_id_infer_auto(0, &addrType);
|
res = ble_hs_id_infer_auto(0, &addrType);
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
#include "AlertNotificationService.h"
|
||||||
#include "AlertNotificationClient.h"
|
#include "AlertNotificationClient.h"
|
||||||
#include "DeviceInformationService.h"
|
#include "DeviceInformationService.h"
|
||||||
#include "CurrentTimeClient.h"
|
#include "CurrentTimeClient.h"
|
||||||
|
#include "CurrentTimeService.h"
|
||||||
#include <host/ble_gap.h>
|
#include <host/ble_gap.h>
|
||||||
|
|
||||||
namespace Pinetime {
|
namespace Pinetime {
|
||||||
|
@ -34,7 +36,10 @@ namespace Pinetime {
|
||||||
|
|
||||||
DeviceInformationService deviceInformationService;
|
DeviceInformationService deviceInformationService;
|
||||||
CurrentTimeClient currentTimeClient;
|
CurrentTimeClient currentTimeClient;
|
||||||
|
AlertNotificationService anService;
|
||||||
AlertNotificationClient alertNotificationClient;
|
AlertNotificationClient alertNotificationClient;
|
||||||
|
CurrentTimeService currentTimeService;
|
||||||
|
|
||||||
uint8_t addrType;
|
uint8_t addrType;
|
||||||
uint16_t connectionHandle;
|
uint16_t connectionHandle;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue