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

split the embedded image into two parts using arm compiler

I am working on image splitting. I want to divide my main embedded image into two-part(core image and application image).

how can we split embedded images into two-part? after the split, it should work on the device. 

anyone can suggest documentation or tutorial to learn.

Parents
  • When linking your 'core' files, generate a symdef file. Then use this when linking your test files so that they know where those components are located.

    Your test1 and test2 apps can reside in parallel though you would need to devise a method to manage how both are executed (there is only one program counter...). Are you using an (RTOS) operating system?

    You may need to open an 'official' support case with Arm (see the menu above) to discuss in detail.

Reply
  • When linking your 'core' files, generate a symdef file. Then use this when linking your test files so that they know where those components are located.

    Your test1 and test2 apps can reside in parallel though you would need to devise a method to manage how both are executed (there is only one program counter...). Are you using an (RTOS) operating system?

    You may need to open an 'official' support case with Arm (see the menu above) to discuss in detail.

Children