2016-03-16 21:46:46 +08:00
|
|
|
/** @file
|
|
|
|
* @brief HRS Service sample
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Intel Corporation
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-03-16 21:46:46 +08:00
|
|
|
*/
|
|
|
|
|
Introduce new sized integer typedefs
This is a start to move away from the C99 {u}int{8,16,32,64}_t types to
Zephyr defined u{8,16,32,64}_t and s{8,16,32,64}_t. This allows Zephyr
to define the sized types in a consistent manor across all the
architectures we support and not conflict with what various compilers
and libc might do with regards to the C99 types.
We introduce <zephyr/types.h> as part of this and have it include
<stdint.h> for now until we transition all the code away from the C99
types.
We go with u{8,16,32,64}_t and s{8,16,32,64}_t as there are some
existing variables defined u8 & u16 as well as to be consistent with
Zephyr naming conventions.
Jira: ZEP-2051
Change-Id: I451fed0623b029d65866622e478225dfab2c0ca8
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2017-04-19 23:32:08 +08:00
|
|
|
#include <zephyr/types.h>
|
2016-03-16 21:46:46 +08:00
|
|
|
#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>
|
|
|
|
|
2017-07-04 21:46:13 +08:00
|
|
|
static struct bt_gatt_ccc_cfg hrmc_ccc_cfg[BT_GATT_CCC_MAX] = {};
|
2017-04-21 22:47:21 +08:00
|
|
|
static u8_t simulate_hrm;
|
|
|
|
static u8_t heartrate = 90;
|
|
|
|
static u8_t hrs_blsc;
|
2016-03-16 21:46:46 +08:00
|
|
|
|
2016-10-12 17:26:10 +08:00
|
|
|
static void hrmc_ccc_cfg_changed(const struct bt_gatt_attr *attr,
|
2017-04-21 22:47:21 +08:00
|
|
|
u16_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,
|
2017-04-21 22:47:21 +08:00
|
|
|
void *buf, u16_t len, u16_t offset)
|
2016-03-16 21:46:46 +08:00
|
|
|
{
|
|
|
|
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),
|
|
|
|
};
|
|
|
|
|
2017-06-12 05:26:19 +08:00
|
|
|
static struct bt_gatt_service hrs_svc = BT_GATT_SERVICE(attrs);
|
|
|
|
|
2017-04-21 22:47:21 +08:00
|
|
|
void hrs_init(u8_t blsc)
|
2016-03-16 21:46:46 +08:00
|
|
|
{
|
|
|
|
hrs_blsc = blsc;
|
|
|
|
|
2017-06-12 05:26:19 +08:00
|
|
|
bt_gatt_service_register(&hrs_svc);
|
2016-03-16 21:46:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void hrs_notify(void)
|
|
|
|
{
|
2017-04-21 22:47:21 +08:00
|
|
|
static u8_t hrm[2];
|
2016-03-16 21:46:46 +08:00
|
|
|
|
|
|
|
/* 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));
|
|
|
|
}
|