The lcd example in starterware is a little more complex.
Is there a simple lcd ccs example like only to show pictures or lines on lcd ? Thanks
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
The lcd example in starterware is a little more complex.
Is there a simple lcd ccs example like only to show pictures or lines on lcd ? Thanks
Hi,
Thanks for your post.
Basically, LCDC controller, which when configured in Raster mode, can interface to a TFT LCD/Display and can be used to display static images with the help of a graphics library. Only one mode (either Raster mode/LIDD mode) would be active at a time in LCDC controller.
Refer Section 2.5, Table 4 for the supported operating modes for raster controller & Section 3.8, Table 18 for LCD raster control register fields from the LCDC user guide below:
http://www.ti.com/lit/ug/sprufm0b/sprufm0b.pdf
So, RasterModeConfig() API is used to configure tft or stn,color or monochrome etc for raster controller in raster mode. Please refer the below source file for raster display configuration to interface TFT-LCD:
~\OMAPL138_StarterWare_1_10_03_03\examples\evmOMAPL138\raster\rasterDisplay.c
Please refer the programming sequence for the raster controller as below:
http://processors.wiki.ti.com/index.php/StarterWare_LCDC
Thanks & regards,
Sivaraj K
-------------------------------------------------------------------------------------------------------
Please click the Verify Answer button on this post if it answers your question.
-------------------------------------------------------------------------------------------------------
Thanks. Now I can dispaly the raster lcd StarterWare demo. The image array is 16 bpp format framebuffer, can you give me other format demo such as 1、4、 8 bpp?