Using SDK15.2 example ble_app_hrs, i need to transfer custom messages and values to the phone app so i want to use ble_nus service, i did everything as in the example ble_app_uart also provided in the SDK, builds fine but when i start the NRF52 DK board i get this error:
<error> app: ERROR 4 [NRF_ERROR_NO_MEM] at C:\nRF5_SDK\examples\ble_peripheral\ble_app_hrs - Copy\main.c:573 PC at: 0x000350E5 <error> app: End of error report
line 573 is:
err_code = ble_nus_init(&m_nus, &nus_init);
APP_ERROR_CHECK(err_code);
reading thru the devzone's other similar questions i see that i need to adjust the memory positions or something like that but i dont get which memory positions i should use...
Any help appreciated... Thanks in advance.