2020-05-04 20:43:51 +00:00
|
|
|
#include "CurrentTimeService.h"
|
2020-04-28 10:21:35 +00:00
|
|
|
#include <hal/nrf_rtc.h>
|
|
|
|
|
|
|
|
using namespace Pinetime::Controllers;
|
|
|
|
|
2020-05-04 20:43:51 +00:00
|
|
|
constexpr ble_uuid16_t CurrentTimeService::ctsUuid;
|
|
|
|
constexpr ble_uuid16_t CurrentTimeService::ctChrUuid;
|
2020-04-28 10:21:35 +00:00
|
|
|
|
|
|
|
|
2020-05-04 20:43:51 +00:00
|
|
|
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);
|
2020-04-28 10:21:35 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 20:43:51 +00:00
|
|
|
void CurrentTimeService::Init() {
|
2020-06-16 18:36:24 +00:00
|
|
|
int res;
|
|
|
|
res = ble_gatts_count_cfg(serviceDefinition);
|
|
|
|
ASSERT(res == 0);
|
|
|
|
|
|
|
|
res = ble_gatts_add_svcs(serviceDefinition);
|
|
|
|
ASSERT(res == 0);
|
2020-04-28 10:21:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-04 20:43:51 +00:00
|
|
|
int CurrentTimeService::OnTimeAccessed(uint16_t conn_handle, uint16_t attr_handle,
|
2020-04-28 10:21:35 +00:00
|
|
|
struct ble_gatt_access_ctxt *ctxt) {
|
|
|
|
|
|
|
|
NRF_LOG_INFO("Setting time...");
|
|
|
|
|
|
|
|
if (ctxt->op == BLE_GATT_ACCESS_OP_WRITE_CHR) {
|
2020-04-28 17:39:26 +00:00
|
|
|
CtsData result;
|
|
|
|
os_mbuf_copydata(ctxt->om, 0, sizeof(CtsData), &result);
|
2020-04-28 10:21:35 +00:00
|
|
|
|
2020-04-28 17:39:26 +00:00
|
|
|
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));
|
2020-04-28 10:21:35 +00:00
|
|
|
|
2020-05-05 19:53:31 +00:00
|
|
|
} 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;
|
|
|
|
|
2020-04-28 10:21:35 +00:00
|
|
|
}
|
2020-05-05 19:53:31 +00:00
|
|
|
|
2020-04-28 10:21:35 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-05-04 20:43:51 +00:00
|
|
|
CurrentTimeService::CurrentTimeService(DateTime &dateTimeController) : m_dateTimeController{dateTimeController},
|
2020-04-28 10:21:35 +00:00
|
|
|
characteristicDefinition{
|
|
|
|
{
|
2020-05-04 20:43:51 +00:00
|
|
|
.uuid = (ble_uuid_t *) &ctChrUuid,
|
|
|
|
.access_cb = CTSCallback,
|
2020-04-28 10:21:35 +00:00
|
|
|
|
|
|
|
.arg = this,
|
2020-05-04 20:43:51 +00:00
|
|
|
.flags = BLE_GATT_CHR_F_WRITE | BLE_GATT_CHR_F_READ
|
2020-04-28 10:21:35 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
serviceDefinition{
|
|
|
|
{
|
|
|
|
/* Device Information Service */
|
|
|
|
.type = BLE_GATT_SVC_TYPE_PRIMARY,
|
2020-05-04 20:43:51 +00:00
|
|
|
.uuid = (ble_uuid_t *) &ctsUuid,
|
2020-04-28 10:21:35 +00:00
|
|
|
.characteristics = characteristicDefinition
|
|
|
|
},
|
|
|
|
{
|
|
|
|
0
|
|
|
|
},
|
|
|
|
}
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|