1 /* 2 * Copyright (C) 2019-2020 Alibaba Group Holding Limited 3 */ 4 #ifndef _BT_BAS_H_ 5 #define _BT_BAS_H_ 6 #include "aos/list.h" 7 8 typedef struct _bas_t { 9 uint16_t conn_handle; 10 uint16_t bas_svc_handle; 11 int16_t ccc; 12 uint8_t battery_level; 13 slist_t next; 14 } bas_t; 15 16 typedef bas_t *bas_handle_t; 17 18 bas_handle_t bas_init(bas_t *bas); 19 int bas_level_update(bas_handle_t handle, uint8_t level); 20 21 #endif 22