[ERROR] panicked at 'SoftdeviceController: 48:602' (nrf_sdc nrf-sdc/src/fmt.rs:101)
What is this line in the softevice controller?
[ERROR] panicked at 'SoftdeviceController: 48:602' (nrf_sdc nrf-sdc/src/fmt.rs:101)
What is this line in the softevice controller?
Hi,
Which nRF Connect SDK version are you using? (I need to know that in order to look this up)
This is the specific softdevice controller lib I'm using, for nrf5340. Thanks
This is the specific softdevice controller lib I'm using, for nrf5340. Thanks
Hi,
I am unfortunately still not able to match the line numer (602) to an actual assert in the SoftDevice Controller. I can say that the first number indicate this is in the scheduler though, so it seems likely that this is caused by something timing related. Perhaps you have high priority interrupts or long critical sections or similar that block the SoftDevice Controller for loo long?
It happens when I attach my debug probe to the net core. If I put a 3 second wait before initializing the soft devicecontroller, i can attach before those 3 seconds after powering my device to prevent the error. Probably causes a timing problem. Makes sense, thanks