Is it possible to have a gatt characteristic user description being read only?
I'm currently using this configuration, but the "nrf master control" android app allows me to send a new value (showing the "up" arrow).
ble_gatts_attr_md_t user_desc_md = {
.read_perm = { .sm = 1, .lv = 1 },
.write_perm = { .sm = 0, .lv = 0 },
.vloc = BLE_GATTS_VLOC_STACK,
};
ble_gatts_char_md_t char_md = {
.char_props = { .read = 1, .notify = 1 },
.char_ext_props = 0,
.p_char_user_desc = "La tete a toto",
.char_user_desc_max_size = 14,
.char_user_desc_size = 14,
.p_char_pf = &char_pf,
.p_user_desc_md = &user_desc_md,
.p_cccd_md = &cccd_md,
.p_sccd_md = NULL,
};