This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

chip doesn't advertise

Hi all,

I'm having a error on my code, and wanted to understand it better. I'm using a custom board with a Rev.3 CTAA chip, 256k Flash and 16k Ram. I have BLE initialized and SPI too, using SD130. And when I start advertising and go to my power manage function, it goes to the state -> sd_app_evt_wait() and doesn't advertise, and if I stop on the debug it is giving me an error on :

p_file_name = 0x000006D1; line_num = 0x07C0; err_code = 0x000000D1;

but I don't understand what this means or why it is happening. If I try the same on the nRF51-DK it advertises and works fine.

Parents
  • I think you forgot to link something on the "this".

    I reduced the RAM size to 15952 = 0x3E50 , because I understood that my RAM is 16K and so this number would be correct.

    I don't have a crystal connected to the nRF so I change the clock_lf_cfg to be like:

    nrf_clock_lf_cfg_t rc_clock_lf_cfg = {.source=NRF_CLOCK_LF_SRC_RC,\
    .rc_ctiv = 4,\
    .rc_temp_ctiv = 1};
    
Reply
  • I think you forgot to link something on the "this".

    I reduced the RAM size to 15952 = 0x3E50 , because I understood that my RAM is 16K and so this number would be correct.

    I don't have a crystal connected to the nRF so I change the clock_lf_cfg to be like:

    nrf_clock_lf_cfg_t rc_clock_lf_cfg = {.source=NRF_CLOCK_LF_SRC_RC,\
    .rc_ctiv = 4,\
    .rc_temp_ctiv = 1};
    
Children
No Data
Related