zoukankan      html  css  js  c++  java
  • lcd 接口小结

    MDDI (Mobile Display Digital Interface)
    http://www.amobbs.com/thread-5512431-1-1.html

    MIPI (Mobile Industry Processor Interface)
    http://www.amobbs.com/thread-5512615-1-1.html

    MIPI联盟旨在推荐手机应用处理器接口标准化。其中有Display工作组制定显示相关规范,包括:

    1. DCS (Display Command Set)
         规定显示命令设置相关规范。
    2. DBI (Display Bus Interface)
         2.1 MIPI-DBI Type A (moto 6800 System) interface (8-/9-/16-/18-/24-bit bus)
         2.2 MIPI-DBI Type B (intel 8080 System) interface (8-/9-/16-/18-/24-bit bus)
         2.3 MIPI-DBI Type C (Serial data transfer interface) interface
              DBI规范中规定DBI Type C可以传输像素值,但市面上的液晶驱动IC只用其来传输命令和命令参数值。
              DBI接口也称为MCU(MPU)接口
    3. DPI (Display Pixel Interface)
         与DBI不同,DPI的数据线和控制器线分离。有VSYNC/HSYNC信号。
         DPI接口也称为RGB接口。
    4. DSI (Display Serial Interface).


    下图是一个LCM的接口和引脚说明,其中"DBI Type C 3-wire serial interface + DPI interface",就是使用DBI Type C规范作为控制线(spi协议传输),DPI作为数据线。

    各信号线的意义:
    NRD_VSYNC:
         DBI Type B时,该信号线表示读使能,在此信号为低时读出数据。
         DPI时,为垂直同步信号。
    NWR_HSYNC:
         DBI Type B时,该信号线表示写使能,在此信号为低时写入数据。
         DPI时,为水平同步信号。
    DNC_SCL:
         DBI Type B时,该信号线表示DNC, 用来区分Data/Command。
         DBI Type C时,该信号线表示SCL(Serial Clock),用来提供串行时钟。




    下图是一个24-bit的DBI Type B连线图, NCS (Chip Select) 是片选信号


  • 相关阅读:
    python 学习笔记(二)
    python list的简单应用
    linux命令--------系统自带vi/vim命令教程
    归并排序的时间复杂度分析
    webapplication发布
    安装windows phone 7
    部署webservice到远程服务器
    SQLserver2005描述对数据的调用
    11.python-过滤器(filter)
    10.python-映射函数(map)
  • 原文地址:https://www.cnblogs.com/sammei/p/3295605.html
Copyright © 2011-2022 走看看