1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef TILE_GATT_DB_H_
- #define TILE_GATT_DB_H_
- #include <stdint.h>
- #include "tile_lib.h"
- typedef struct
- {
- uint16_t service_handle;
- uint16_t characteristic_handles[TILE_NUM_ATTRS];
- } tile_gatt_db_t;
- void tile_gatt_db_init(tile_gatt_db_t *p_service);
- #endif
|