PIC32 Bootloader app linker script boot section

832 Views Asked by At

A Bootloader and an application is working fine.

The bootloader loads the application, and then jumps into it.

The problem: I need to use different linker script to either have the app standalone or bootloader compatible.

I believe it is because the memory segment is not correctly defined for kseg0_program_mem, kseg0_boot_mem & kseg1_boot_mem.

//_RESET_ADDR                    = 0xBFC00000; <- work without bootloader
_RESET_ADDR                    = 0x9D000480; <- work with bootloader

[....]

MEMORY
{
  kseg0_program_mem     (rx)  : ORIGIN = 0x9D000000 + 0x800, LENGTH = 0x100000 - 0x800 
  kseg0_boot_mem              : ORIGIN = 0x9D000000, LENGTH = 0x0 
  debug_exec_mem              : ORIGIN = 0x9FC20490, LENGTH = 0x3B20
  kseg0_boot_mem              : ORIGIN = 0x9FC20490, LENGTH = 0x0
  kseg1_boot_mem              : ORIGIN = 0x9D000000, LENGTH = 0x480
  kseg1_boot_mem_4B0          : ORIGIN = 0xBFC004B0, LENGTH = 0x3B00
  config_BFC03FC0             : ORIGIN = 0xBFC03FC0, LENGTH = 0x4
0

There are 0 best solutions below