Hi I have been learning to use 128x64 LCD module with AT89C51 and I have been using FastLCD for converting bmp into a table of bytes. I have use the table in my codes and tried to compile it. I get the result - auto segment too large. How to put all bytes in my codes in order to display picture on my 128x64 LCD module. I don't understand it. What is the problem? Manoz Joshi
You need to specify that the table should reside in code space. unsigned char code myarray[]={1,2,3...
I have used the array and I could not exceed more than 64 data. Manoz Joshi