• 【原创】Display interface types supported


    下面是一款LCD支持的接口类型:

    MPU mode
    1. MIPI-DBI Type B (80 System) interface (16- / 18- / 24-bit bus) ----- DBI_B (Z80 ?)
    2. MIPI-DBI Type A (68 System) interface (16- / 18- bit bus)   --------- DBI_A (M68 ?)
    3. MIPI-DBI Type C (Serial data transfer interface) interface  ------ DBI_C

    MIPI-DSI (Display Serial Interface) interface
    1. Support DSI Version 1.01
    2. Support D-PHY version 0.90


    MDDI (Mobile Display Digital Interface) interface
    1. Support VESA Mobile Display Digital Interface Standard Version 1.2


    RGB mode
    1. 16 bit/pixel R(5), G(6), B(5)
    2. 18 bit/pixel R(6), G(6), B(6)
    3. 24 bit/pixel R(8), G(8), B(8)

    ----------------------------------

    RGB565 几种颜色的对应值

     LCD_COLOR_BLACK = 0x0000, /* /< lcd black pixel */
     LCD_COLOR_GREEN = 0x07E0, /* /< lcd green pixel */
     LCD_COLOR_RED = 0xF800, /* /< lcd red pixel */
     LCD_COLOR_BLUE = 0x001F, /* /< lcd blue pixel */
     LCD_COLOR_YELLOW = 0xFFE0, /* /< lcd yellow pixel */
     LCD_COLOR_CYAN = 0xF81F, /* /< lcd cyan pixel */
     LCD_COLOR_DDD = 0x07FF, /* /< lcd ddd pixel */
     LCD_COLOR_WHITE = 0xFFFF /* /< lcd white pixel */

  • 相关阅读:
    jQuery应用 代码片段
    正则表达式大全
    js表单编程
    补充回顾
    Socket网路编程
    异常处理
    day18-2 反射详解
    day18-1 面向对象进阶
    day18-1 多态
    day17-2 继承
  • 原文地址:https://www.cnblogs.com/hengfeng/p/2312314.html
Copyright © 2020-2023  润新知