Content originally posted in LPCWare by wellsk on Thu Apr 11 08:04:00 MST 2013You could try changing the font arrays to type 'const' to get them placed in FLASH memory. This should reduce your RAM usgae requirements for something that we should probably located in non-volathile memory anyways - we'll check into this and (probbaly) make the default fonts all const.
for example, in the lpc_rom8x16.c file
<pre>static uint16_t rom8x16_bits[] = {</pre>Change to
<pre>static const uint16_t rom8x16_bits[] = {</pre>There might be a few warnings/errors after this that require some type casts to clear up.