Hi, When using RBC mesh and SD8.0.0 I often get assertion at line 189 in soc_radio_timeslot.c. This file is part of sd8.0.0 and I dont have source code. Why is this assert triggering? What can I do about it?
Hi, When using RBC mesh and SD8.0.0 I often get assertion at line 189 in soc_radio_timeslot.c. This file is part of sd8.0.0 and I dont have source code. Why is this assert triggering? What can I do about it?
This assert will hit if you spend too much time in the callback handler, because this could disturb the timings used for BLE. You can fix this by asking for more time, or optimizing your code to run faster. Remember that there is some overhead back and fort due to interrupt handling and function calls, so this must be calculated in.
This assert will hit if you spend too much time in the callback handler, because this could disturb the timings used for BLE. You can fix this by asking for more time, or optimizing your code to run faster. Remember that there is some overhead back and fort due to interrupt handling and function calls, so this must be calculated in.