2016-03-16 21:46:46 +08:00
|
|
|
/** @file
|
|
|
|
* @brief HRS Service sample
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Intel Corporation
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <misc/printk.h>
|
|
|
|
#include <misc/byteorder.h>
|
|
|
|
#include <zephyr.h>
|
|
|
|
|
|
|
|
#include <bluetooth/bluetooth.h>
|
|
|
|
#include <bluetooth/hci.h>
|
|
|
|
#include <bluetooth/conn.h>
|
|
|
|
#include <bluetooth/uuid.h>
|
|
|
|
#include <bluetooth/gatt.h>
|
|
|
|
|
|
|
|
static struct bt_gatt_ccc_cfg hrmc_ccc_cfg[CONFIG_BLUETOOTH_MAX_PAIRED] = {};
|
|
|
|
static uint8_t simulate_hrm;
|
|
|
|
static uint8_t heartrate = 90;
|
|
|
|
static uint8_t hrs_blsc;
|
|
|
|
|
2016-10-12 17:26:10 +08:00
|
|
|
static void hrmc_ccc_cfg_changed(const struct bt_gatt_attr *attr,
|
|
|
|
uint16_t value)
|
2016-03-16 21:46:46 +08:00
|
|
|
{
|
|
|
|
simulate_hrm = (value == BT_GATT_CCC_NOTIFY) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t read_blsc(struct bt_conn *conn, const struct bt_gatt_attr *attr,
|
|
|
|
void *buf, uint16_t len, uint16_t offset)
|
|
|
|
{
|
|
|
|
return bt_gatt_attr_read(conn, attr, buf, len, offset, &hrs_blsc,
|
|
|
|
sizeof(hrs_blsc));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Heart Rate Service Declaration */
|
|
|
|
static struct bt_gatt_attr attrs[] = {
|
|
|
|
BT_GATT_PRIMARY_SERVICE(BT_UUID_HRS),
|
|
|
|
BT_GATT_CHARACTERISTIC(BT_UUID_HRS_MEASUREMENT, BT_GATT_CHRC_NOTIFY),
|
|
|
|
BT_GATT_DESCRIPTOR(BT_UUID_HRS_MEASUREMENT, BT_GATT_PERM_READ, NULL,
|
|
|
|
NULL, NULL),
|
|
|
|
BT_GATT_CCC(hrmc_ccc_cfg, hrmc_ccc_cfg_changed),
|
|
|
|
BT_GATT_CHARACTERISTIC(BT_UUID_HRS_BODY_SENSOR, BT_GATT_CHRC_READ),
|
|
|
|
BT_GATT_DESCRIPTOR(BT_UUID_HRS_BODY_SENSOR, BT_GATT_PERM_READ,
|
|
|
|
read_blsc, NULL, NULL),
|
|
|
|
BT_GATT_CHARACTERISTIC(BT_UUID_HRS_CONTROL_POINT, BT_GATT_CHRC_WRITE),
|
|
|
|
/* TODO: Add write permission and callback */
|
|
|
|
BT_GATT_DESCRIPTOR(BT_UUID_HRS_CONTROL_POINT, BT_GATT_PERM_READ, NULL,
|
|
|
|
NULL, NULL),
|
|
|
|
};
|
|
|
|
|
|
|
|
void hrs_init(uint8_t blsc)
|
|
|
|
{
|
|
|
|
hrs_blsc = blsc;
|
|
|
|
|
|
|
|
bt_gatt_register(attrs, ARRAY_SIZE(attrs));
|
|
|
|
}
|
|
|
|
|
|
|
|
void hrs_notify(void)
|
|
|
|
{
|
|
|
|
static uint8_t hrm[2];
|
|
|
|
|
|
|
|
/* Heartrate measurements simulation */
|
|
|
|
if (!simulate_hrm) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
heartrate++;
|
|
|
|
if (heartrate == 160) {
|
|
|
|
heartrate = 90;
|
|
|
|
}
|
|
|
|
|
|
|
|
hrm[0] = 0x06; /* uint8, sensor contact */
|
|
|
|
hrm[1] = heartrate;
|
|
|
|
|
|
|
|
bt_gatt_notify(NULL, &attrs[2], &hrm, sizeof(hrm));
|
|
|
|
}
|