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

hex file generated using eclipse not working on nrf52 dk

Hi All

I am trying to build hex file using eclipse id on Mac. everything looks ok, as it eclipse build file without any error but its not working on nrf52 dk.

before installing I did erase all on nrfgo studio and then install hex file.

can anyone point out possible reason for this.

Thanks

Parents
  • Have you tried with vs_uuid_count = 1? If you increase this parameter, you will also have to increase the RAM size for the softdevice. You can edit the RAM start and size in the linker script, found in the armgcc directory where the Makefile is located. For the proximity example with vs_uuid_count = 2, the settings should be:

    MEMORY
    {
      FLASH (rx) : ORIGIN = 0x1f000, LENGTH = 0x61000
      RAM (rwx) :  ORIGIN = 0x20002138, LENGTH = 0xdec8 
    }
    
Reply
  • Have you tried with vs_uuid_count = 1? If you increase this parameter, you will also have to increase the RAM size for the softdevice. You can edit the RAM start and size in the linker script, found in the armgcc directory where the Makefile is located. For the proximity example with vs_uuid_count = 2, the settings should be:

    MEMORY
    {
      FLASH (rx) : ORIGIN = 0x1f000, LENGTH = 0x61000
      RAM (rwx) :  ORIGIN = 0x20002138, LENGTH = 0xdec8 
    }
    
Children
Related