How to show an image on the LCD of ARM 9 processor? -
i need display image on lcd of arm 9 board. processor arm926ej-s , i'm running board on windows. i'm using code composer studio v4. there libraries can use purpose?
i managed show colours on lcd using evmam1808_lcd_raster.c. displaying images similar this? here code used:
#define lcd_width 320 #define lcd_height 240 #define color_blue 0x001f int x,y; raster_init(); for(y = 0; y < lcd_height; ++y){ for(x = 0; x < lcd_width; ++x) raster_plot(x, y, color_blue); }
do need read image file , display on screen or there way of doing this?
thanks in advance.
Comments
Post a Comment