We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
want to display Images written into SD card on blue screen(Graphical LCD) connected to LPC2378 please help if any one have tried the same one.
Please refer MP3 player sample code provided with bluescreen kit along with Bluescreen_Manual.
For Image Display (From Prog Mem) ----> First convert the into hex file. Then inclue image file as .h in you program. You can use ScrObjInit(MP3ScreenInit) function to display image.
MP3ScreenInit() is another function in which you initialise structure object so_obj. This structure contains functions related to each image.In that structure draw() function is present which actually display image on LCD. Please pass base address of array of image hex file to TSLCDShowPic2() function present in draw() function.
To Acess SD Card ------> You can use refrence manual given below to understand how to acess SD card.
uniboard.googlecode.com/.../SD-MMC_reference_manual.pdf
This pdf contains brief explanation about different function calls used to acess Sd card like change_Dir(),ls_getNext(),AppSDRead() etc.