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.

AM1808 24 bit RGB TFT LCD

Other Parts Discussed in Thread: AM1808

Hi,

We are developing and industrial controller based on AM1808, we want to connect  24 Bit RGB TFT LCD to the 16 Bit LCDC port of the AM1808, should we use the LSB or the MSB data bits from the LCD, is the below configuration correct?

NC        ->  B0                     NC        ->  G0                NC        ->  R0

NC        ->  B1                     NC        ->  G1                NC        ->  R1

NC        ->  B2                     LCD_D5 -> G2                 NC        ->  R2 

LCD_D0 -> B3                     LCD_D6 -> G3                 LCD_D11 -> R3

LCD_D1 -> B4                     LCD_D7 -> G4                 LCD_D12 -> R4 

LCD_D2 -> B5                     LCD_D8 -> G5                 LCD_D13 -> R5

LCD_D3 -> B6                     LCD_D9 -> G6                 LCD_D14 -> R6

LCD_D4 -> B7                     LCD_D10 -> G7               LCD_D15 -> R7

Thanks.

  • Moha,

    Refer the Figure 24-7. 16-BPP Data Memory Organization (TFT Mode Only)
    http://www.ti.com/lit/spruh77
    http://www.ti.com/lit/spruh82
    Register: RASTER_CTRL
    Field: TFT_ALT_MAP
    Output pixel data for 1, 2, 4, and 8 BPP will be right aligned on LCD_D[11:0].
    For example, R3 R2 R1 R0 G3 G2 G1 G0 B3 B2 B1 B0

    Refer the below wiki page links for Raster Mode
    http://processors.wiki.ti.com/index.php/StarterWare_LCDC
    http://processors.wiki.ti.com/index.php/AM18XX_SitaraWare_Graphics#Raster_Programming
    http://processors.wiki.ti.com/index.php/OMAP-L1x/C674x/AM1x_LCD_Controller_(LCDC)_Throughput_and_Optimization_Techniques

    4532.evmomapl138_lcd_raster.c
    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    //-----------------------------------------------------------------------------
    // \file evmomapl138_raster.c
    // \brief implementation of the raster LCD driver for the OMAP-L138 EVM.
    //
    //-----------------------------------------------------------------------------
    #include "stdio.h"
    #include "types.h"
    #include "evmomapl138.h"
    #include "evmomapl138_timer.h"
    #include "evmomapl138_gpio.h"
    #include "evmomapl138_lcdc.h"
    #include "evmomapl138_lcd_raster.h"
    //-----------------------------------------------------------------------------
    // Private Defines and Macros
    //-----------------------------------------------------------------------------
    #define PINMUX_LCD_D_BUS_0_REG 16
    #define PINMUX_LCD_D_BUS_1_REG 17
    #define PINMUX_LCD_D_BUS_2_REG 18
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

  • Hi Moha,

    You need to use LSB and the below configuration is correct for 16-Bit RGB565 Interface to 24-Bit RGB 888 TFT LCD usually the unused LCD pins are grounded.

    One thing you will see on an LCD with only 16 bits or source color (5 red, 6 green and 5 blue) is severe banding artifacts when displaying smooth shaded regions or color gradients. This is not an issue for things like menu displays but looks terrible for video applications. 

    Regards

    Antony

    • --------------------------------------------------------------------------------------------------------
      Please click the Verify Answer button on this post if it answers your question.
      --------------------------------------------------------------------------------------------------------
  • got it.

    Thanks Pubesh and Antony.