Tool/software: TI C/C++ Compiler
Good day, im pretty new to this and i cant understand how to use EMIF to store your own data?
For example, i have a structure
struct Struct{
float32_t x ;
float32_t y ;
float32_t z ;
struct BinData{
uint32_t seconds :32;
uint32_t indication :8;
uint32_t mode :8;
uint32_t modeArea :8;
}binDataTM;
};
I want this to be stored in the EMIF not in the RAM.
How can i do this?
i tried to use __attribute__(section("myEmifSection")) , but this realy didnt work
struct TelemPackStruct telemetryStruct __attribute__((section(".EMemory")))={.tmMarker=0xf99ff99f};
What i want to reach, is to write some local structres one after another (pointer++;). I need EMIF to store only this structures.