HengFeng

--博观而约取,厚积而薄发
  博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

2012年1月4日

摘要: 下面是一款LCD支持的接口类型:MPU mode1.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_CMIPI-DSI (Display Serial Interface 阅读全文

posted @ 2012-01-04 17:42 hengfeng 阅读(483) 评论(0) 推荐(0) 编辑

摘要: ZZ:http://bbs.gfan.com/thread-3342750-1-1.htmlLCD的CPU接口和RGB接口(CPU接口也有写成MPU接口的) 目前一般彩色LCD的连接方式有这么几种:MCU模式,RGB模式,SPI模式,VSYNC模式,MDDI模式等。MCU模式:目前最常用的连接模式,一般是80系统(68系统已经不存在了)。数据位传输有8位,9位, 16位和18位。连线分为:CS/,RS(寄存器选择),RD/,WR/,再就是数据线了。优点是:控 制简单方便,无需时钟和同步信号。缺点是:要耗费GRAM,所以难以做到大屏(QVGA以上). RGB模式:大屏采用较多的模式,数... 阅读全文

posted @ 2012-01-04 17:34 hengfeng 阅读(603) 评论(0) 推荐(0) 编辑

摘要: ZZ: http://blog.csdn.net/tanxs001/article/details/6120293(1)DBI接口 也就是通常所讲的MCU借口,俗称80 system接口。The lcd interface between host processor and LCM device list as below,The LCM driver will repeated update panel display。MCU借口通过并行接口传输控制命令和数据,并通过往LCM模组自带的GRAM(graphic RAM)更新数据实现屏幕的刷新。 以典型的18位数据跟16位数据做说明(8位寄存 阅读全文

posted @ 2012-01-04 17:18 hengfeng 阅读(905) 评论(0) 推荐(0) 编辑

摘要: ZZ:http://www.cnblogs.com/wwang/archive/2010/11/28/1889281.html玩转C链表2010-11-28 20:50 by wwang, 4397 visits, 收藏, 编辑 链表是C语言编程中常用的数据结构,比如我们要建一个整数链表,一般可能这么定义:?1234struct int_node { int val; struct int_node *next; };为了实现链表的插入、删除、遍历等功能,另外要再实现一系列函数,比如:?1234567891011void insert_node(struct int_node **head, 阅读全文

posted @ 2012-01-04 12:45 hengfeng 阅读(213) 评论(0) 推荐(0) 编辑

摘要: ZZ: http://www.cnblogs.com/wwang/archive/2011/02/24/1960283.html谈谈Linux内核驱动的coding style2011-02-24 00:07 by wwang, 4136 visits, 收藏, 编辑 最近在向Linux内核提交一些驱动程序,在提交的过程中,发现自己的代码离Linux内核的coding style要求还是差很多。当初自己对内核文档里的CodingStyle一文只是粗略的浏览,真正写代码的时候在很多细节上会照顾不周。不过, 在不遵守规则的程序员队伍里,我并不是孤独的。如果去看drivers/staging下的代码 阅读全文

posted @ 2012-01-04 12:23 hengfeng 阅读(224) 评论(0) 推荐(0) 编辑