Other Parts Discussed in Thread: CONTROLSUITE, TMS320F28335
Hi,
I have some code that I've been testing that I would like to program to flash.
When I do that I run into a problem when I'm trying to copy my ram functions.
In example 2803xFlash it tells me to use:
memcpy((uint16_t *)&RamfuncsRunStart,(uint16_t *)&RamfuncsLoadStart, (unsigned long)&RamfuncsLoadSize);
to copy data from flash to ram to avoid errors, yet when I do this in my code it complains about RamFuncsLoadSize being undefined, yet I thought this would be defined by including F2030.cmd.
Where can I get these definitions? (I do have the following at the top of my main.c:
extern Uint16 RamfuncsLoadStart;
extern Uint16 RamfuncsLoadSize;
extern Uint16 RamfuncsRunStart;
)