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.

  • The nRF51 DK has 32kB of RAM. Have you changed the RAM settings in the example? What example are you running? When debugging, turn of optimization, and add the variables to a watch window. Then you should see what the error is, at which line number, in which file.

  • I changed my RAM size from 0x5F80 to 0x3E50 because I only had 16k of RAM available. don't know if this was a problem, because it still compiled without any errors.

    I started with the ble_app_uart example of the SDK11 but then I added a lot of things that I had to use such as I2C and SPI connections. But I'm not able to run the BLE advertising anymore, or at least it doesn't show me on the scanners.

    I didn't understand what I needed to add to the watch window, I already can see the line, file and error, my problem is that I don't understand what it is. The line number is easy, because is the line on the file, but I don't understand what file is this 0x000006D1.

    And thank you for the help.

  • It seems that the problem is happening on the ble_advertising_start function. I can't debug, because for some reason the program cuts my access to the chip after 2 seconds. But it continues to work without advertising.

    Could it be the advertising mode (using FAST_MODE)? I'm using also the internal clock on this chip, could it be the problem?

  • I got the same error as on the question if I use the ble_app_uart example from the SDK11. And it goes through all the inits but when enters on the power_manage it goes to the app_error.c with that information. The only change I made was to use the internal clock, I'll try to use the synthesized one.

  • Please see this for what I meant with watch window. You reduced RAM size with 8496 bytes? But you have 16384 less bytes? What internal clock? Do you mean that you don't have crystals? Which? 16MHz or 32kHz?

Related