I'm using pc-ble-driver to talk to the nRF52840 dev-dongle from a Windows PC.
I started with examples\heart_rate_collector\main.c
I receive events in a function 'ble_evt_dispatch' (that function is the third argument to 'sd_rpc_open').
I expect the first argument to 'ble_evt_dispatch', which has type 'adapter_t*' to be equal to the 'adapter_t*' argument that I pass in to 'sd_rpc_open' but it is not. Why is this?
I'm trying to match up events received in'ble_evt_dispatch with the adapter I previously created.