Search found 1 match
- Sun Oct 15, 2017 11:56 am
- Forum: ESP-IDF
- Topic: How a BLE Server can get the RSSI of received packet from Central Device
- Replies: 4
- Views: 9013
Re: How a BLE Server can get the RSSI of received packet from Central Device
Hello paschalis, I've done a little research for your question and it turns out that you have to call the GAP API in order to get the RSSI. So, if you modify the GATT server example from ESP-IDF by adding a call to esp_ble_gap_read_rssi(param->read.bda) in the gatts_profile_a_event_handler() functio...