ble之gatt server
生活随笔
收集整理的這篇文章主要介紹了
ble之gatt server
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
結構圖:
對應代碼:
typedef struct
{? ? uint16_t handle;
? ? uint8_t uuid_len;
? ? uint8_t uuid[16];
}desprip_t;
typedef struct
{
? ? uint16_t handle;
? ? uint8_t uuid_len;
? ? uint8_t uuid[16];
}include_t;
typedef struct
{
? ? uint16_t dhandle;
? ? uint16_t vhandle;
? ? uint8_t property;
? ? uint8_t uuid_len;
? ? uint8_t uuid[16];
? ? uint8_t nod;
? ? desprip_t * d;
}charact_t;
typedef struct
{
? ? uint16_t start;// 服務定義中第一個Attribute的Handle
? ? uint16_t end;// 服務定義中最后一個Attribute的Handle
? ? uint8_t uuid_len;
? ? uint8_t uuid[16];
? ? uint8_t noi;
? ? include_t * i;
? ? uint8_t noc;
? ? charact_t * c;
}service_t;
typedef struct
{
? ? uint8_t nos;//服務的數量
? ? service_t * s;
}server_t;
server_t server;
總結
以上是生活随笔為你收集整理的ble之gatt server的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 通用属性配置文件(Generic Att
- 下一篇: Summary of GATT Prof