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

Ble_app_Blinky not

I have downloaded the ble_app_blinky_c_pca10056_s140 hex file to the development kit with the help of the nrf_connect windows application. I have a PCA10100 development kit. Now when I am searching this advertising device from the blinky or nrf_connect android application, the "NRF_Blinky" does not show. I have checked the development kit LED1 is constant on, and thought that the device is already advertising. So, suggest to me what can go wrong.

Parents Reply
  • In practice, no change is needed unless you use too much flash or RAM. If you do, it would be good to have the sized set correctly so that you would get a linker error telling you that it cannot fit.

    If you want to do that, you could fix it.  First, just get the physical sizes correct. So for flash, FLASH_PH_SIZE should be 512 kB = 0x80000. For RAM, RAM_PH_SIZE should be  128 kB = 0x20000. Then just do the simple math I suggested. For instance, as FLASH_START = 0x27000 that means FLASH_SIZE = 0x80000 - 0x27000 = 0x59000. And so on.

    If you happen to use a bootloader or want to reserve space for FDS etc you should set it lower. But again, this normally does not have practical implications, though it is always a good idea to ensure that you get an error as soon as possible (so build time/link time)

Children
Related