Some questions about BLE characteristic's permission
Hi there,
I have some questions about BLE characteristics' permission.
Our customer want one of our device's characteristic supports both notification and indication, so I set it as follow:
[CUSTOMER_IDX_CONTROL_POINT_VAL] = {CUSTOMER_CONTROL_POINT_UUID_128, ATT_UUID_128_LEN, PERM(WR, ENABLE) | PERM(WRITE_REQ, ENABLE) | PERM(IND, ENABLE) | PERM(NTF, ENABLE), DEF_CUST1_INDICATEABLE_CHAR_LEN, 0, NULL},
I just want to know, Is it legal that I set the one characteristic with notification and indication permission? Is it a normal case?