I am writing a Windows program to control an nRF52840 using pc-ble-driver, v4.1.1, with NRF_SD_BLE_API=6
I need to do all of the following:
1. Scan
2. Create multiple simultaneous open connections, and read/write characteristics on that connection.
3. Advertise while scanning and having open connections.
Most is working well except advertising. I started with the advertising code in pc-ble-driver (v4.1.1) examples\heart_rate_monitor\main.c
When initially advertise, it works. I go through this sequence of calls repeatedly:
1. sd_ble_gap_adv_set_configure
2. sd_ble_gap_adv_start
3. sd_ble_gap_adv_stop
4. Repeat
Initially this works. I monitor the advertisement from the nRF Connect app on my phone and it is exactly what I'm trying to advertise.
Eventually the buffer with my advertising data gets overwritten. The particular buffer I mean is part of the 3rd argument to sd_ble_gap_adv_set_configure: ble_gap_adv_data_t.adv_data.p_data which is a 30-byte buffer with my advertising data.
I'm debugging and see that my buffer is referenced in 'ble_data_t_dec' (SER_CONNECTIVITY is not defined, I don't know what SER_CONNECTIVITY is, but I never saw any instructions to define it)
p_struct->p_data = app_ble_gap_adv_buf_unregister(buf_id, true);
So this 'unregisters' my buffer and then proceeds to overwrite it. What is this code trying accomplish, and why does it think it's OK to overwrite the advertising data buffer I gave it?