Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
BitmapImages.rar | 2008-12-25 | 2.8 kB | |
DeviceDriver.rar | 2008-12-25 | 6.0 kB | |
64128a.pdf | 2008-12-25 | 734.8 kB | |
iiitb.h | 2008-12-25 | 5.4 kB | |
dragon.h | 2008-12-25 | 5.4 kB | |
bitmap.h | 2008-12-25 | 5.4 kB | |
myfont.h | 2008-12-25 | 3.9 kB | |
lcd_header.h | 2008-12-25 | 1.9 kB | |
lcd_header.c | 2008-12-25 | 11.0 kB | |
README.TXT | 2008-12-25 | 1.2 kB | |
Totals: 10 Items | 777.8 kB | 0 |
/********************************************************************************************************/ /* DEVICE DRIVER FOR DISPLAYTECH 64128 LCD */ /* TESTED ON RENESAS R8C/25 MCU */ /* ravishankar.n@iiitb.ac.inhimanshu.sao@iiitb.ac.in */ /********************************************************************************************************/ 1.To use the driver, simply include the 'lcd_header.c' and 'lcd_header.h' files in the project. 2.'myfont.h' and 'bitmap.h' are called by 'lcd_header.c'. So keep them also in the same directory. 3.If you want to use your own fonts, replace 'myfont.h' with 'your_font.h'.According to the number of columns (i.e character width) used up by each character,you have to make changes in the 'for' loop in the "put_char(char)" function in 'lcd_header.c'.But this function only supports a character height of 8 pixels(or less) 3.Change your port names in 'lcd_header.h' according to the MCU that you are using. 4.You can create bitmap headers using free software like FASTLCD and include them in the project.You may need to edit "draw_bitmap()" function to load non-standard bitmap sizes !