Gast
#1209413
Hallo,
Um die RAM-Resource zu sparen, möchte einen konstanten array im flash
forcieren. leider folgener Ausdruck hat nichts gebracht. Compiler ist
crossworks for arm.
unsigned char Simple_Font [1914] _attribute_ ((section(".text")))=
{
...
...
}
ich erhalte beim compilieren die Meldung:
"Warning: ignoring changed section attributes for .text"
selbst wenn ich den array als konstant deklariere bleibt die Ausnutzung
des RAM genauso gross als ohne den qualifier "const".
const unsigned char Simple_Font [1914] =
{
...
...
}
Hat jemand eine Idee.
vielen Dank.
laspalmas