Home > other >  Questions about the microcontroller GD32F450 drive rgb565 and rgb888
Questions about the microcontroller GD32F450 drive rgb565 and rgb888

Time:03-12


GD32f50 in (144 feet) can drive. Rgb565 GD32F450I (176 feet) can not only drive rgb65 can drive rgb888,
1. Now I want to choose GD32F450Z (144 feet),
2. My current screen is a LVDSDE vertical screen resolution of 480 * 1280. Check the information GD32 biggest can drive 1028 * 768 resolution,
I want to ask is, if I use GD32F450Z drive rgb565, then use the rgb565 turn an LVDS chip, access to an LVDS screen, then GD32F450 can drive the LCD screen, because the resolution of the two is a little difference, (and this is the vertical screen when the time comes I will need to character flip)



Is there another who knows rgb565 turn an LVDS chip, I found a GM8283. See his input is 18 and 24, didn't write rgb565 16, don't know whether receive rgb565 mode of access

CodePudding user response:

Good thinking, can realize, need to pay attention to a few places
1: check the CPU manual, see if the LCD maximum vertical resolution can meet (greater than 1280, general register number is greater than or equal to 11),
2: RGB565 can direct connection to the RGB666 (18)/RGB888 (24),
3: according to your LCD screen, choose 18/24 of an LVDS chips,
4: need software to do the work, vertical screen to display character flip
5: RGB565 RGB18 connection relationship
RGB565 - & gt; RGB666
R4 -- -- -- -- -- - & gt; R5
R3 -- -- -- -- -- - & gt; R4
R2 -- -- -- -- -- - & gt; R3
R1 -- -- -- -- -- - & gt; R2
R0 -- -- -- -- -- - & gt; R1
R0 -- -- -- -- -- - & gt; R0 (ground)

-- -- -- -- -- - the G5 & gt; The G5
G4 -- -- -- -- -- - & gt; G4
G3 -- -- -- -- -- - & gt; G3
G2 -- -- -- -- -- - & gt; G2
G2 -- -- -- -- -- - & gt; G1
G0 -- -- -- -- -- - & gt; G0

B4 -- -- -- -- -- - & gt; B5
B3 -- -- -- -- -- - & gt; B4
B2 -- -- -- -- -- - & gt; B3
B1 -- -- -- -- -- - & gt; B2
B0 -- -- -- -- -- - & gt; B1
B0 -- -- -- -- -- - & gt; B0 (grounding)

6: RGB565 RGB24 connection relationship
RGB565 - & gt; RGB888
R4 -- -- -- -- -- - & gt; R7
R3 -- -- -- -- -- - & gt; R6
R2 -- -- -- -- -- - & gt; R5
R1 -- -- -- -- -- - & gt; R4
R0 -- -- -- -- -- - & gt; R3
R0 -- -- -- -- -- - & gt; R2 can (ground)
R0 -- -- -- -- -- - & gt; R1 (grounding)
R0 -- -- -- -- -- - & gt; R0 (ground)

-- -- -- -- -- - the G5 & gt; The G7
G4 -- -- -- -- -- - & gt; G6
G3 -- -- -- -- -- - & gt; The G5
G2 -- -- -- -- -- - & gt; G4
G1 -- -- -- -- -- - & gt; G3
G0 -- -- -- -- -- - & gt; G2
G0 -- -- -- -- -- - & gt; G1 (grounding)
G0 -- -- -- -- -- - & gt; G0 (ground)

B4 -- -- -- -- -- - & gt; B7
B3 -- -- -- -- -- - & gt; B6
B2 -- -- -- -- -- - & gt; B5
B1 -- -- -- -- -- - & gt; B4
B0 -- -- -- -- -- - & gt; B3
B0 -- -- -- -- -- - & gt; B2 (grounding)
B0 -- -- -- -- -- - & gt; B1 (grounding)
B0 -- -- -- -- -- - & gt; B0 (grounding)
  • Related