This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Problem with the bootloader startup file(LPC2378)

Hi

We have two different projects bootloader(without RTX kernal) and Application code (with RTX Kernal).When we laod the bootlaoder and the application code, part of the RAM data will be corrupted.Please guide to resolve this problem.

Software interrupts is not required for the bootlaoder
we have not shifted the interrupt address, we are using the same interrupt address

Meomory mapping is as below
Bootloader 0 - 0x2000
Application code starts from 0x2000

Thank you
Harish

Parents
  • maybe this is what's wrong: it could be that the memory maps of the 2 binaries overlap, namely: some address(es) used in boot mode are also used in application mode. this could be deadly if your bootloader does not really transfer all control to the application, but rather continues to handle some interrupts, but example.

Reply
  • maybe this is what's wrong: it could be that the memory maps of the 2 binaries overlap, namely: some address(es) used in boot mode are also used in application mode. this could be deadly if your bootloader does not really transfer all control to the application, but rather continues to handle some interrupts, but example.

Children