123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- /*********************************************************************************************
- * Filename : att.h
- * Description :
- * Author : minxian
- * Email : liminxian@zh-jieli.com
- * Last modifiled : 2020-07-01 16:33
- * Copyright:(c)JIELI 2011-2020 @ , All Rights Reserved.
- *********************************************************************************************/
- #ifndef _BT_ATT_H_
- #define _BT_ATT_H_
- #include "typedef.h"
- #include "btstack/btstack_typedef.h"
- #if defined __cplusplus
- extern "C" {
- #endif
- // Minimum/default MTU
- #define ATT_DEFAULT_MTU 23
- #define ATT_EVENT_MTU_EXCHANGE_COMPLETE 0xB5
- #define ATT_EVENT_HANDLE_VALUE_INDICATION_COMPLETE 0xB6
- #define ATT_EVENT_CAN_SEND_NOW 0xB7
- #define ATT_TRANSACTION_MODE_NONE 0x0
- #define ATT_TRANSACTION_MODE_ACTIVE 0x1
- #define ATT_TRANSACTION_MODE_EXECUTE 0x2
- #define ATT_TRANSACTION_MODE_CANCEL 0x3
- #define ATT_TRANSACTION_MODE_VALIDATE 0x4
- #define ATT_PROPERTY_BROADCAST 0x01
- #define ATT_PROPERTY_READ 0x02
- #define ATT_PROPERTY_WRITE_WITHOUT_RESPONSE 0x04
- #define ATT_PROPERTY_WRITE 0x08
- #define ATT_PROPERTY_NOTIFY 0x10
- #define ATT_PROPERTY_INDICATE 0x20
- typedef enum {
- ATT_OP_AUTO_READ_CCC = 0, //server端 检查对方使能通知CCC来控制 notify or indicate发送
- ATT_OP_NOTIFY = 1, //server端 默认notify方式发送,不检查使能通知CCC (不需要对方回应答包,没有流控)
- ATT_OP_INDICATE = 2, //server端 默认INDICATE方式发送,不检查使能通知CCC (需要对方回应答包,有流控)
- ATT_OP_READ, //client端 单次读, 用于获取<=MTU 的数据包 (需要对方回应答包,有流控)
- ATT_OP_READ_LONG, //client端 多次读,用于支持获取>MTU 的数据包 (需要对方回应答包,有流控)
- ATT_OP_WRITE, //client端 写发送 (需要对方回应答包,有流控)
- ATT_OP_WRITE_WITHOUT_RESPOND,//client端 写发送 (不需要对方回应答包,没有流控)
- //add here
- ATT_OP_CMD_MAX = 15,
- } att_op_type_e;
- //------
- typedef struct {
- uint16_t start_group_handle;//
- uint16_t end_group_handle;
- uint16_t uuid16; //为0则是 uuid128
- uint8_t uuid128[16];
- } service_report_t; //==le_service_t
- typedef struct {
- uint16_t start_handle;
- uint16_t value_handle; //属性操作handle
- uint16_t end_handle;
- uint16_t properties; //属性对应 ATT_PROPERTY_XXX
- uint16_t uuid16; //为0则是 uuid128
- uint8_t uuid128[16];
- } charact_report_t; //==le_characteristic_t
- typedef struct {
- u16 packet_type; //数据包类型(notify,indicate,read_respone,...)
- u16 value_handle; //属性操作handle
- u16 value_offset; //包偏移
- u16 blob_length; //包长度
- u8 *blob; //包内容
- u16 conn_handle; //连接handle
- } att_data_report_t;
- typedef struct {
- service_report_t services;
- charact_report_t characteristic;
- u16 service_index;
- u16 characteristic_index;
- } search_result_t;
- typedef struct {
- u16 handle;//descriptor's handle
- u16 uuid16;//为0则是 uuid128
- u8 uuid128[16];
- } charact_descriptor_t;
- void att_ccc_config_init(void);
- void att_set_ccc_config(uint16_t handle, uint16_t cfg);
- uint16_t att_get_ccc_config(uint16_t handle);
- void att_server_set_exchange_mtu(u16 con_handle);
- void att_set_db(uint8_t const *db);//change profile_data
- //多机接口
- //初始化 CCC管理
- void multi_att_ccc_config_init(void);
- //设置CCC
- void multi_att_set_ccc_config(uint16_t conn_handle, uint16_t att_handle, uint16_t cfg);
- //获取CCC的值
- uint16_t multi_att_get_ccc_config(uint16_t conn_handle, uint16_t att_handle);
- //断开, 清链路CCC
- int multi_att_clear_ccc_config(uint16_t conn_handle);
- // ATT Client Read Callback for Dynamic Data
- // - if buffer == NULL, don't copy data, just return size of value
- // - if buffer != NULL, copy data and return number bytes copied
- // @param con_handle of hci le connection
- // @param attribute_handle to be read
- // @param offset defines start of attribute value
- // @param buffer
- // @param buffer_size
- typedef uint16_t (*att_read_callback_t)(uint16_t con_handle, uint16_t attribute_handle, uint16_t offset, uint8_t *buffer, uint16_t buffer_size);
- // ATT Client Write Callback for Dynamic Data
- // @param con_handle of hci le connection
- // @param attribute_handle to be written
- // @param transaction - ATT_TRANSACTION_MODE_NONE for regular writes, ATT_TRANSACTION_MODE_ACTIVE for prepared writes and ATT_TRANSACTION_MODE_EXECUTE
- // @param offset into the value - used for queued writes and long attributes
- // @param buffer
- // @param buffer_size
- // @param signature used for signed write commmands
- // @returns 0 if write was ok, ATT_ERROR_PREPARE_QUEUE_FULL if no space in queue, ATT_ERROR_INVALID_OFFSET if offset is larger than max buffer
- typedef int (*att_write_callback_t)(uint16_t con_handle, uint16_t attribute_handle, uint16_t transaction_mode, uint16_t offset, uint8_t *buffer, uint16_t buffer_size);
- void ble_att_server_setup_init(const u8 *profile_db, att_read_callback_t read_cbk, att_write_callback_t write_cbk);
- void att_server_request_can_send_now_event(hci_con_handle_t con_handle);
- int att_server_notify(hci_con_handle_t con_handle, uint16_t attribute_handle, uint8_t *value, uint16_t value_len);
- int att_server_indicate(hci_con_handle_t con_handle, uint16_t attribute_handle, uint8_t *value, uint16_t value_len);
- extern void att_server_init(uint8_t const *db, att_read_callback_t read_callback, att_write_callback_t write_callback);
- extern void att_server_register_packet_handler(btstack_packet_handler_t handler);
- #endif
|