hi,
i try to drive a display, but the character-table seems to be too big for the msp430fe427a.
so i try to define my character table the following way:
"#pragma DATA_SECTION ( ascii_tab , ".S65LCD" );
unsigned char ascii_tab[96][14]={ ...."
in the .cmd-file, i tell the linker the following:
".S65LCD : {} > FLASH"
but inside the memory the .S65LCD-section is empty... only 0xFFFF. Why doesnt the linker copy the array to the flash?