This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

MSPM0G1107: How to extend bootloader flash size

Part Number: MSPM0G1107
Other Parts Discussed in Thread: MSPM0G3507

Tool/software:

Hi team,

My customer would like to extend the bootloader flash size from 0x2000 to 0x4000. They modify the value of IROM address inside mspm0g3507.sct. But it cannot work.

Please instruct the complete and correct method about how to extend the bootloader flash size. Thank you.

  • Hi Jerry,

    So customer develop their own bootloader project?

    If so, configrue below as an example:

    LR_IROM1 0x00000000 0x00004000  {    ; load region size_region
      ER_IROM1 0x00000000 ALIGNALL 8 0x00004000  {  ; load address = execution address
       *.o (RESET, +First)
       *(InRoot$$Sections)
       .ANY (+RO)
       .ANY (+XO)
      }
      RW_IRAM2 0x20200000 0x00008000  {  ; RW data
       .ANY (+RW +ZI)
       .ANY (.ramfunc)
      }
    }

    Map files after build:

    B.R.

    Sal

  • Hi Sal,

    Thank you. I will discuss with customer. Thank you.