This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

how can I get write event?

Hi. I'm using nRF52832, SDK13, S132v4.0.2.

I'm making peripheral device using nRF52832. And I can see it gets BLE_GATTS_EVT_WRITE event as below when central sends WRITE event.

static void on_ble_evt(ble_evt_t * p_ble_evt) { ...... switch (p_ble_evt->header.evt_id) { ...... case BLE_GATTS_EVT_WRITE: { } } }

How can I get event When central sends "write no need response"? As I tested I can't get the event using "BLE_GATTS_EVT_WRITE".

I hope your reply.

Related