This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

getting wirte event with char_props.write_wo_resp = 1

Hi

Should I get a characteristic write event ( BLE_GATTS_EVT_WRITE ) with s110 as well with the following property configuration:

char_md.char_props.write = 0;
char_md.char_props.notify = 0;
char_md.char_props.read	= 1;
char_md.char_props.indicate = 0;
char_md.char_props.broadcast = 0;
char_md.char_props.auth_signed_wr = 0;
char_md.char_props.write_wo_resp = 1;

If not, do I have to poll for the value? If yes, how it has to be done? ..followed the nAN-36 with the LED example, but couldn't get it running!

Thanks for your help, armin

Related