I am relatively new in arduno mega 2560..usint utft touch shield ..
I upload my code with no problem..it show
"Sketch uses 66,176 bytes (32%) of program storage space. Maximum is 253,952 bytes.
Global variables use 552 bytes (6%) of dynamic memory, leaving 7,640 bytes for local variables. Maximum is 8,192 bytes."
but after uploading code sucessfully arduno do nothing..
There are issues with putting large amounts of data in PROGMEM on the '2560 due to the near/far thing; I think you can only fill 25% of the program space with PROGMEM before it can't be accessed via the normal method (read_byte_near() - read_byte_far() is needed), and IIRC almost nothing is smart enough to handle that correctly.