Search found 4 matches

by Dr.Steve
Mon Oct 22, 2018 12:08 am
Forum: ESP-IDF
Topic: BLE Server and Client coexisting
Replies: 11
Views: 13476

Re: BLE Server and Client coexisting

The following crash is what I am experiencing with this issue. Note that I have tried running the ble stack on both core 0 and core 1 and it has simply shifted which core the error appears on. ASSERT_PARAM(2051 0), in llc_util.c at line 289 Guru Meditation Error: Core 1 panic'ed (Interrupt wdt timeo...
by Dr.Steve
Fri Oct 19, 2018 12:55 pm
Forum: ESP-IDF
Topic: BLE Server and Client coexisting
Replies: 11
Views: 13476

Re: BLE Server and Client coexisting

Thanks! Also basically what im doing is connecting to a sensor periodically with the esp32 and then dropping the connection once iv made a measurement. The phone is not connected to the esp32 at this stage and both callbacks are receiving the disconnection event.
by Dr.Steve
Fri Oct 19, 2018 8:38 am
Forum: ESP-IDF
Topic: BLE Server and Client coexisting
Replies: 11
Views: 13476

Re: BLE Server and Client coexisting

The client and server are running on a single esp32 eg. A phone app can connect to the single esp32 whilst it is also connected to other sensors. The connections should be managed separately within the device, however I am getting a call back on both events.
by Dr.Steve
Fri Oct 19, 2018 5:19 am
Forum: ESP-IDF
Topic: BLE Server and Client coexisting
Replies: 11
Views: 13476

BLE Server and Client coexisting

Hi, I am currently working on a project which requires a ble server and client to work together. I have registered call backs using esp_ble_gatts_register_callback(gatts_event_handler); esp_ble_gattc_register_callback(esp_gattc_cb); However the server callback routine is being called when a client h...