Hi, Can I debug BLE program? for example ble_app_hrs and ble_app_proximity. If not, why and how can I test and evaluate my BLE proram ?
Best Regards
Hi, Can I debug BLE program? for example ble_app_hrs and ble_app_proximity. If not, why and how can I test and evaluate my BLE proram ?
Best Regards
Add the following line in you code just before breakpoint:
__ASM volatile ("MSR primask, %0" : : "r" (0x1) : "memory");
This will set PRIMASK register. You will be able to step debuger until you hit one of the sd_ calls.
Works like a charm! Thank you.
Works like a charm! Thank you.