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.

NOR BOOT of AM335x SYSBIOS Industrial SDK

Other Parts Discussed in Thread: SYSBIOS

Hi,

In AM335x SYSBIOS Industrial SDK Getting Started Guide
            Flashing Binaries to NOR Flash on ICE Using CCS
            Why the address is 0x80100000,and, $$\tools\flashing tools\NOR_Flash ....the address in the source  code is 0x80100000 too.
but, in the bootloader,
         
                 #define NOR_1ST_SCTR_ADDR (0x08000000)
                 #define NOR_2ND_SCTR_ADDR (0x08010000)
0x80100000 is a EMIF address,and 0x08010000 is a GPMC address,the SYSBIOS first loads the BIN to EMIF module,then flash to device ?
By the way,in the bootloader project,it will check the header,
typedef struct _ti_header_
    {
          unsigned int magic_number;
          unsigned int image_size;
          unsigned int load_addr;
          unsigned int run_addr;
    }ti_header;
but,the starterware header only has a size and an address,how can I add the ti_header to my bin file?
thanks!
YanTCK