Hi Man, How many CENTRAL_LINK_COUNT in ble_app_hrs_rscs_relay can do so far? I just increase the CENTRAL_LINK_COUNT form 2 to 5 then nRF52 Reset itself all the time.
Vincent
Hi Man, How many CENTRAL_LINK_COUNT in ble_app_hrs_rscs_relay can do so far? I just increase the CENTRAL_LINK_COUNT form 2 to 5 then nRF52 Reset itself all the time.
Vincent
so put a breakpoint in the app_error_handler() and find out which of the API calls you're making is returning an error.
I did and I put the ponit on this line: app_error_handler(0xDEADBEEF, line_num, p_file_name); But It can not stop even in the app_error_handler fun. Please tell me. How can I do?
Sorry I forgot put the DEBUG on KEIL-C. I find the error on the: // Enable BLE stack. err_code = softdevice_enable(&ble_enable_params); APP_ERROR_CHECK(err_code);
error code: 4 what the 4 means.
single step into that function and find the actual call returning the error, then look it up in the documentation links at the top of this page to find out what it means. Probably no memory, but that's just one of the things '4' can mean.
There's only a few calls in that softdevice_enable() function, takes no time to work out which one returned the error.
I ref the other Example ble_app_multilink_central RAM setting now I setting #define CENTRAL_LINK_COUNT 4 #define PERIPHERAL_LINK_COUNT 1 and RAM Setting just follow that example: IRAM1: 0x20003DB0 (start) 0C250 (Size) Now It does not reset itself, Is that right or not. thanks