I have a nRF52840 dongle (from Fanstel) that is set up as a virtual COM port on my Windows 7 machine, and which I am accessing using pc-ble-driver.
I want to be able to programatically reset my nRF52840. The only function I see to do this is sd_rpc_conn_reset, which I call with the SYS_RESET option. I call sd_rpc_conn_reset, and on my Windows 7 system, the virtual COM port for the nRF52840 gets errors (as expected, since the device is resetting), I see a USB device removal for the device, followed a second later by a USB device arrival. At this point the virtual COM port again exists in Windows. But if I try to open that virtual COM port, the file-open operation gets "The system cannot find the file specified" (which causes sd_rpc_open to given the error NRF_ERROR_SD_RPC_H5_TRANSPORT_STATE). I've tried inserting a delay between when I get the USB device arrival and when I try to open the COM port (to be sure it's ready) but even a 10 second delay still results in the same error.
How can I programatically reset the nRF52840 and then access it again afterwards in Windows 7 using pc-ble-driver?
Thanks,
-Paul Bradford