|
本帖最后由 8410430 于 2020-2-2 14:47 编辑
52832 SDK 15.0
目前服务有多个通知特性:
1.主机端使能其中一个通知,其他通知我想从机端自动使能。
uint32_t err_code;
uint8_t cccd_value_buf[BLE_CCCD_VALUE_LEN] = {0x01,0x00};
ble_gatts_value_t gatts_value;
// Initialize value struct.
memset(&gatts_value, 0, sizeof(gatts_value));
gatts_value.len = BLE_CCCD_VALUE_LEN;
gatts_value.offset = 0;
gatts_value.p_value = cccd_value_buf;
err_code = sd_ble_gatts_value_set(p_ftms->conn_handle,
p_ftms->ibd_handles.cccd_handle,
&gatts_value);
VERIFY_SUCCESS(err_code);
无法实现,返回错误代码NRF_ERROR_FORBIDDEN(0x0F)
请问下是哪个环节出了问题?
|
|