Hi,everybody.
I have written a customized bootloader (non-BIOS) that can update AppCode for F28335.I refer to the app note SPRAAQ2 for 2812 and find the answer in TI E2E communitythe when I designed the bootloader.The Flash API functions MUST be run out of internal zero-waitstate SARAM memory, so Copy API Functions into SARAM:
Example_MemCopy(&Flash28_API_LoadStart, &Flash28_API_LoadEnd, &Flash28_API_RunStart);
SECTIONS
{
    Flash28_API:
   {
        -lFlash28335_API_V210.lib(.econst)
        -lFlash28335_API_V210.lib(.text)
   }                   LOAD = FLASHA,
                       RUN = RAML0,
                       LOAD_START(_Flash28_API_LoadStart),
                       LOAD_END(_Flash28_API_LoadEnd),
                       RUN_START(_Flash28_API_RunStart),
                       PAGE = 0
}
The Flash API functions are progrommed with customized bootloader in initial version,now If I want download the API Functions to SARAM memory via SCI, How can I do ?
Thank you,
Clack.