ChinaUnix.net
相关文章推荐:

DE MODE lcd

本帖最后由 dngood 于 2012-05-03 09:13 编辑 de

by dngood - 服务器及硬件技术 - 2009-06-24 18:29:48 阅读(2294) 回复(8)

相关讨论

lcd的驱动和framebuffer有什么区别,有了内核的framebuffer就不用写lcd的驱动了吗?

by linux_song - 内核/嵌入技术 - 2006-12-05 17:18:08 阅读(933) 回复(3)

[code] #include "head.h" #define SEM_NAME "/xiaozhu" int main(int argc, char **argv) { int i, fd, nloop, zero = 0; int *addr = NULL; pid_t pid; fd = open("/dev/zero", O_RDWR); if(fd == -1){ perror("open /dev/zero"); exit(1); } addr = mmap(NULL, sizeof(int), PROT_READ|PROT_W...

by xiaozhu2007 - C/C++ - 2008-04-19 22:42:20 阅读(1327) 回复(0)
by fenggou88 - 培训交流 - 2007-11-18 19:55:21 阅读(739) 回复(1)

发现一种新的模式组建无线Mesh网络,多跳之后,带宽并没有下降。之前做的无线mesh网络,最大的问题就是网络经过n跳之后,带宽基本呈1/n的趋势下降。这种模式经过实验,带宽在多跳之后并没有下降,在以后的项目实践过程中应该可以很好地利用起来。 原文: AHdeMO Mode Usage Create the VAP device with: wlanconfig ath0 create wlandev wifi0 wlanmode ahdemo See tickets #728 & #729 for patches to correct the re...

by Tedunix - 网络技术文档中心 - 2009-06-24 10:43:23 阅读(1307) 回复(0)

参见 http://effbot.org/imagingbook/concepts.htm#mode 另: 本地保留查询页面 http://www.pythonware.com/library/pil/handbook/ http://effbot.org/zone/pil-index.htm Mode # The mode of an image defines the type and depth of a pixel in the image. The current release supports the following standard modes: 1 (1-bit pixels, black and white, stored with one pixel per byte) L (8-bit pixels, black and white...

by stlaw - Python文档中心 - 2009-04-03 16:15:41 阅读(1289) 回复(0)

mysql可以运行在不同sql mode模式下面,sql mode模式定义了mysql应该支持的sql语法,数据校验等! 查看默认的sql mode模式: select @@sql_mode; 我的数据库是: STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION 在此模式下面,如果插入的数据的长度大于定义的长度,那么就会报错! set session sql_mode='REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ANSI'; 在这种模式下面:插入的数据的长度大...

by 破壳成龙 - MySQL文档中心 - 2008-11-26 19:55:14 阅读(1309) 回复(0)

Tunnel mode provides the protection of an entire IP packet by treating it as an AH or ESP payload. With tunnel mode, an entire IP packet is encapsulated with an AH or ESP header and an additional IP header. The IP addresses of the outer IP header are the tunnel endpoints, and the IP addresses of the encapsulated IP header are the ultimate source and destination addresses. AH tunnel mode As shown ...

by bu - 网络技术文档中心 - 2006-10-12 15:23:04 阅读(634) 回复(0)

[quote] 首先介绍一下RubyQuiz。RubyQuiz就是希望能从玩中学习Ruby的知识。我们把RubyQuiz引入CU的Ruby版,就是希望加强大家的互动,使大家都能在不知不觉中学到知识。主要的题目来源是RubyQuiz.com,也欢迎大家提交原创的题目。希望大家多多参与。 [/quote] 题目是写一个程序来显示lcd类型的数字,大小是可以指定的。要显示的数字通过参数传给程序,大小是通过命令行参数“-s”,是一个正整数。默认大小是2. 例如: [code]> lc...

by nasi - Ruby - 2008-07-29 18:06:30 阅读(3708) 回复(2)