I'm writing code for a 480 * 320 Graphics LCD which uses the ILI9486 Driver IC.
I've imported the header files named glcd_ili9486l.h and glcd.h but in the file "glcd_ili9486l.h", reference is made to some tables such as:
BigFont32_41
BigFont42_51
...
up to
BigFont213_216
However, I can't find the header file which contains these tables.
Any help please?
Best regards,
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm actually coding in C (in Atmel Studio) and so far all the libraries I found online for the ILI9486 driver were in C++. It was more difficult for me to wrap my head around Object Oriented Programming (classes etc) compared to BASIC (which happens to be the first programming language I studied)
So I'm currently translating the GCB libraries to C.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello everyone,
I'm writing code for a 480 * 320 Graphics LCD which uses the ILI9486 Driver IC.
I've imported the header files named glcd_ili9486l.h and glcd.h but in the file "glcd_ili9486l.h", reference is made to some tables such as:
BigFont32_41
BigFont42_51
...
up to
BigFont213_216
However, I can't find the header file which contains these tables.
Any help please?
Best regards,
Welcome.
The font tables are in ..\GCB@Syn\GreatCowBasic\Include\glcd_ssd1289.h
Why? The GLCD methods and tables are all accessible to you to use. Think of all these libraries as global.
We should move this common set of tables from glcd_ssd1289.h to glcd.h in the future.
Anobium,
Thanks a lot for the help.
I'm actually coding in C (in Atmel Studio) and so far all the libraries I found online for the ILI9486 driver were in C++. It was more difficult for me to wrap my head around Object Oriented Programming (classes etc) compared to BASIC (which happens to be the first programming language I studied)
So I'm currently translating the GCB libraries to C.