Hello
I entered following code in a sample project:
#define PAGE_MCU 512
union param{
struct{
int SetC1;
int SetC2;
float ValTemp1;
float ValTemp2;
long Id;
} datos;
unsigned char buffer_flash[512];
};
union param RomData @0x0900 = {20, 55, 2.34, 5.41, 1000};
int temp;
void main(void) {
temp = RomData.datos.SetC1;
This can be built (compiled + Linked) without any problem with CodeWarrior for MCU V6.2.
CrasyCat