mirror of
https://github.com/espressif/esp-nimble.git
synced 2026-07-26 21:09:05 +00:00
feat (NimBLE): Add proximity sensor as a service
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2017-2023 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#ifndef H_BLE_SVC_PROX_
|
||||
#define H_BLE_SVC_PROX_
|
||||
|
||||
struct ble_hs_cfg;
|
||||
|
||||
/* 16 Bit Proximity Sensor Service UUID */
|
||||
#define BLE_SVC_IMMEDIATE_ALERT_UUID16 0x1802
|
||||
#define BLE_SVC_LINK_LOSS_UUID16 0x1803
|
||||
#define BLE_SVC_TX_POWER_UUID16 0x1804
|
||||
|
||||
/* 16 Bit Proximity Sensor Service Characteristic UUIDs */
|
||||
#define BLE_SVC_PROX_CHR_UUID16_ALERT_LVL 0x2A06
|
||||
#define BLE_SVC_PROX_CHR_UUID16_TX_PWR_LVL 0x2A07
|
||||
|
||||
/* 16 Bit Proximity Sensor Service Descriptors UUIDs */
|
||||
#define BLE_SVC_PROX_DSC_UUID16_PRSNTN_FORMAT 0x2904
|
||||
|
||||
/* Error Definitions */
|
||||
#define BLE_SVC_HS_ERR_CMD_NOT_SUPPORTED 0x80
|
||||
|
||||
/**
|
||||
* @brief Initializes proximity service.
|
||||
*/
|
||||
void ble_svc_prox_init(void);
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2017-2023 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
pkg.name: nimble/host/services/prox
|
||||
pkg.description: Proximity Sensor Server.
|
||||
pkg.author: "Apache Mynewt <[email protected]>"
|
||||
pkg.homepage: "http://mynewt.apache.org/"
|
||||
pkg.keywords:
|
||||
- ble
|
||||
- bluetooth
|
||||
- prox
|
||||
- nimble
|
||||
|
||||
pkg.deps:
|
||||
- nimble/host
|
||||
|
||||
pkg.init:
|
||||
ble_svc_prox_init: 'MYNEWT_VAL(BLE_SVC_PROX_SYSINIT_STAGE)'
|
||||
@@ -0,0 +1,263 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2017-2023 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "sysinit/sysinit.h"
|
||||
#include "syscfg/syscfg.h"
|
||||
#include "host/ble_hs.h"
|
||||
#include "host/ble_gap.h"
|
||||
#include "services/prox/ble_svc_prox.h"
|
||||
|
||||
/* Characteristic values */
|
||||
static uint8_t ble_svc_prox_link_loss_alert;
|
||||
static int8_t ble_svc_prox_alert;
|
||||
static uint8_t ble_svc_prox_tx_pwr_lvl = BLE_HS_ADV_TX_PWR_LVL_AUTO;
|
||||
|
||||
/* Characteristic value handles */
|
||||
static uint16_t ble_svc_prox_link_loss_val_handle;
|
||||
static uint16_t ble_svc_prox_immediate_alert_loc_val_handle;
|
||||
static uint16_t ble_svc_prox_tx_pwr_lvl_val_handle;
|
||||
|
||||
static bool ble_svc_prox_alert_conn[MYNEWT_VAL(BLE_MAX_CONNECTIONS) + 1];
|
||||
|
||||
static int
|
||||
ble_svc_prox_link_loss_access(uint16_t conn_handle, uint16_t attr_handle,
|
||||
struct ble_gatt_access_ctxt *ctxt,
|
||||
void *arg);
|
||||
static int
|
||||
ble_svc_prox_imm_alert_access(uint16_t conn_handle, uint16_t attr_handle,
|
||||
struct ble_gatt_access_ctxt *ctxt,
|
||||
void *arg);
|
||||
static int
|
||||
ble_svc_prox_tx_pwr_access(uint16_t conn_handle, uint16_t attr_handle,
|
||||
struct ble_gatt_access_ctxt *ctxt,
|
||||
void *arg);
|
||||
|
||||
static int
|
||||
ble_svc_prox_chr_write(struct os_mbuf *om, uint16_t min_len,
|
||||
uint16_t max_len, void *dst,
|
||||
uint16_t *len);
|
||||
|
||||
static const struct ble_gatt_svc_def ble_svc_prox_defs[] = {
|
||||
{
|
||||
/*** Link Loss Service. */
|
||||
.type = BLE_GATT_SVC_TYPE_PRIMARY,
|
||||
.uuid = BLE_UUID16_DECLARE(BLE_SVC_LINK_LOSS_UUID16),
|
||||
.characteristics = (struct ble_gatt_chr_def[])
|
||||
{ {
|
||||
/** Alert level characteristic */
|
||||
.uuid = BLE_UUID16_DECLARE(BLE_SVC_PROX_CHR_UUID16_ALERT_LVL),
|
||||
.access_cb = ble_svc_prox_link_loss_access,
|
||||
.val_handle = &ble_svc_prox_link_loss_val_handle,
|
||||
.flags = BLE_GATT_CHR_F_WRITE | BLE_GATT_CHR_F_NOTIFY,
|
||||
}, {
|
||||
0, /* No more characteristics in this service. */
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
/*** Immediate Alert Service. */
|
||||
.type = BLE_GATT_SVC_TYPE_PRIMARY,
|
||||
.uuid = BLE_UUID16_DECLARE(BLE_SVC_IMMEDIATE_ALERT_UUID16),
|
||||
.characteristics = (struct ble_gatt_chr_def[])
|
||||
{ {
|
||||
/** Alert level characteristic */
|
||||
.uuid = BLE_UUID16_DECLARE(BLE_SVC_PROX_CHR_UUID16_ALERT_LVL),
|
||||
.access_cb = ble_svc_prox_imm_alert_access,
|
||||
.val_handle = &ble_svc_prox_immediate_alert_loc_val_handle,
|
||||
.flags = BLE_GATT_CHR_F_WRITE | BLE_GATT_CHR_F_NOTIFY,
|
||||
}, {
|
||||
0, /* No more characteristics in this service. */
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
/*** TX Power Service. */
|
||||
.type = BLE_GATT_SVC_TYPE_PRIMARY,
|
||||
.uuid = BLE_UUID16_DECLARE(BLE_SVC_TX_POWER_UUID16),
|
||||
.characteristics = (struct ble_gatt_chr_def[])
|
||||
{ {
|
||||
/** TX Power Level Characteristic */
|
||||
.uuid = BLE_UUID16_DECLARE(BLE_SVC_PROX_CHR_UUID16_TX_PWR_LVL),
|
||||
.access_cb = ble_svc_prox_tx_pwr_access,
|
||||
.val_handle = &ble_svc_prox_tx_pwr_lvl_val_handle,
|
||||
.flags = BLE_GATT_CHR_F_READ,
|
||||
.descriptors = (struct ble_gatt_dsc_def[])
|
||||
{
|
||||
{
|
||||
/** Presentation Format Descriptor */
|
||||
.uuid = BLE_UUID16_DECLARE(BLE_SVC_PROX_DSC_UUID16_PRSNTN_FORMAT),
|
||||
.att_flags = BLE_ATT_F_READ,
|
||||
.access_cb = ble_svc_prox_tx_pwr_access,
|
||||
}, {
|
||||
0,
|
||||
}
|
||||
},
|
||||
}, {
|
||||
0, /* No more characteristics in this service. */
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
0, /* No more services. */
|
||||
},
|
||||
};
|
||||
|
||||
void
|
||||
ble_prox_prph_task(void *pvParameters)
|
||||
{
|
||||
while (1) {
|
||||
for (int i = 0; i <= MYNEWT_VAL(BLE_MAX_CONNECTIONS); i++) {
|
||||
if (ble_svc_prox_alert_conn[i]) {
|
||||
MODLOG_DFLT(INFO, "Path loss increased for device connected with conn_handle %d", i);
|
||||
}
|
||||
}
|
||||
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
ble_prox_prph_alert_unalert(uint16_t conn_handle)
|
||||
{
|
||||
if (ble_svc_prox_alert != 0 && !ble_svc_prox_alert_conn[conn_handle]) {
|
||||
MODLOG_DFLT(INFO, "Path loss exceeded threshold, starting alert for device with "
|
||||
"conn_handle %d", conn_handle);
|
||||
ble_svc_prox_alert_conn[conn_handle] = true;
|
||||
} else if (ble_svc_prox_alert == 0 && ble_svc_prox_alert_conn[conn_handle]) {
|
||||
MODLOG_DFLT(INFO, "Path loss lower than threshold, stopping alert for device with "
|
||||
"conn_handle %d", conn_handle);
|
||||
ble_svc_prox_alert_conn[conn_handle] = false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Access function
|
||||
*/
|
||||
static int
|
||||
ble_svc_prox_link_loss_access(uint16_t conn_handle, uint16_t attr_handle,
|
||||
struct ble_gatt_access_ctxt *ctxt,
|
||||
void *arg)
|
||||
{
|
||||
uint16_t uuid16;
|
||||
int rc;
|
||||
|
||||
uuid16 = ble_uuid_u16(ctxt->chr->uuid);
|
||||
assert(uuid16 != 0);
|
||||
|
||||
switch (uuid16) {
|
||||
case BLE_SVC_PROX_CHR_UUID16_ALERT_LVL:
|
||||
if (ctxt->op == BLE_GATT_ACCESS_OP_WRITE_CHR) {
|
||||
rc = ble_svc_prox_chr_write(ctxt->om, 0, sizeof(ble_svc_prox_link_loss_alert),
|
||||
&ble_svc_prox_link_loss_alert, NULL);
|
||||
return rc == 0 ? 0 : BLE_ATT_ERR_INSUFFICIENT_RES;
|
||||
}
|
||||
return BLE_ATT_ERR_INSUFFICIENT_RES;
|
||||
|
||||
default:
|
||||
assert(0);
|
||||
return BLE_ATT_ERR_UNLIKELY;
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
ble_svc_prox_imm_alert_access(uint16_t conn_handle, uint16_t attr_handle,
|
||||
struct ble_gatt_access_ctxt *ctxt,
|
||||
void *arg)
|
||||
{
|
||||
uint16_t uuid16;
|
||||
|
||||
uuid16 = ble_uuid_u16(ctxt->chr->uuid);
|
||||
assert(uuid16 != 0);
|
||||
|
||||
switch (uuid16) {
|
||||
case BLE_SVC_PROX_CHR_UUID16_ALERT_LVL:
|
||||
if (ctxt->op == BLE_GATT_ACCESS_OP_WRITE_CHR) {
|
||||
ble_svc_prox_alert = ctxt->om->om_data[0];
|
||||
MODLOG_DFLT(INFO, "Path loss = %d", ble_svc_prox_alert);
|
||||
|
||||
ble_prox_prph_alert_unalert(conn_handle);
|
||||
return 0;
|
||||
}
|
||||
return BLE_ATT_ERR_INSUFFICIENT_RES;
|
||||
|
||||
default:
|
||||
assert(0);
|
||||
return BLE_ATT_ERR_UNLIKELY;
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
ble_svc_prox_tx_pwr_access(uint16_t conn_handle, uint16_t attr_handle,
|
||||
struct ble_gatt_access_ctxt *ctxt,
|
||||
void *arg)
|
||||
{
|
||||
uint16_t uuid16;
|
||||
int rc;
|
||||
|
||||
uuid16 = ble_uuid_u16(ctxt->chr->uuid);
|
||||
assert(uuid16 != 0);
|
||||
|
||||
switch (uuid16) {
|
||||
case BLE_SVC_PROX_CHR_UUID16_TX_PWR_LVL:
|
||||
assert(ctxt->op == BLE_GATT_ACCESS_OP_READ_CHR);
|
||||
rc = os_mbuf_append(ctxt->om, &ble_svc_prox_tx_pwr_lvl,
|
||||
sizeof(ble_svc_prox_tx_pwr_lvl));
|
||||
return rc == 0 ? 0 : BLE_ATT_ERR_INSUFFICIENT_RES;
|
||||
|
||||
default:
|
||||
assert(0);
|
||||
return BLE_ATT_ERR_UNLIKELY;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Writes the received value from a characteristic write to
|
||||
* the given destination.
|
||||
*/
|
||||
static int
|
||||
ble_svc_prox_chr_write(struct os_mbuf *om, uint16_t min_len,
|
||||
uint16_t max_len, void *dst,
|
||||
uint16_t *len)
|
||||
{
|
||||
uint16_t om_len;
|
||||
int rc;
|
||||
|
||||
om_len = OS_MBUF_PKTLEN(om);
|
||||
if (om_len < min_len || om_len > max_len) {
|
||||
return BLE_ATT_ERR_INVALID_ATTR_VALUE_LEN;
|
||||
}
|
||||
|
||||
rc = ble_hs_mbuf_to_flat(om, dst, max_len, len);
|
||||
if (rc != 0) {
|
||||
return BLE_ATT_ERR_UNLIKELY;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
ble_svc_prox_init(void)
|
||||
{
|
||||
int rc;
|
||||
|
||||
/* Ensure this function only gets called by sysinit. */
|
||||
SYSINIT_ASSERT_ACTIVE();
|
||||
|
||||
rc = ble_gatts_count_cfg(ble_svc_prox_defs);
|
||||
SYSINIT_PANIC_ASSERT(rc == 0);
|
||||
|
||||
rc = ble_gatts_add_svcs(ble_svc_prox_defs);
|
||||
SYSINIT_PANIC_ASSERT(rc == 0);
|
||||
|
||||
xTaskCreate(ble_prox_prph_task, "ble_prox_prph_task", 4096, NULL, 10, NULL);
|
||||
|
||||
/* Initializing alert array */
|
||||
for (int i = 0; i <= MYNEWT_VAL(BLE_MAX_CONNECTIONS); i++) {
|
||||
ble_svc_prox_alert_conn[i] = false;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2017-2023 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
syscfg.defs:
|
||||
BLE_SVC_PROX_SYSINIT_STAGE:
|
||||
description: >
|
||||
Sysinit stage for the proximity sensor service.
|
||||
value: 303
|
||||
Reference in New Issue
Block a user