Back to all

ble-medical

by Amin Alam

50Feb 7, 2026Visit Source
GATT characteristic with permissions: ```c // REQ-BLE-GATT-02; TEST-BLE-07 const gatt_char_t glucose_meas = { .uuid = GLUCOSE_MEAS_UUID, .props = READ | NOTIFY, .perm = AUTHENTICATED | ENCRYPTED, .max_len = sizeof(glucose_meas_t), }; ```