Microcontroller › PIC › GLCD interfacing with pic16f877a › Hi,Most probably, your RAM
August 23, 2012 at 6:16 pm
#8501
Participant
Hi,
Most probably, your RAM won’t be having that much space to hold the large array. Try changing its type to const char, like
const char ch1[]
so that the data goes to ROM where there will be enough space.