上一页 1 ··· 103 104 105 106 107 108 109 110 111 ··· 128 下一页

MACHINE_START宏

摘要: http://www.cublog.cn/u2/60011/showart_1010489.html MACHINE_START宏 linux2.6.18内核,在Mach-s3c2410.c文件中,有如下的宏定义: MACHINE_START(SMDK2410, "SMDK2410") /* @TODO: request a new identifier and switch to SMDK241... 阅读全文
posted @ 2011-06-17 16:00 katago 阅读(762) 评论(0) 推荐(0) 编辑

About TEXTADDR, ZTEXTADDR, PAGE_OFFSET etc

摘要: About TEXTADDR, ZTEXTADDR, PAGE_OFFSET etc Initial definitions ------------------- The following symbol definitions rely on you knowing the translation that __virt_to_phys() does for your machine. Th... 阅读全文
posted @ 2011-06-17 15:54 katago 阅读(338) 评论(0) 推荐(0) 编辑

vmalloc使用的地址范围

摘要: Vmalloc可以获得的地址在VMALLOC_START到VMALLOC_END的范围中。这两个符号在<asm/pgtable.h>中定义: * arch/arm/include/asm/pgtable.h /* * Just any arbitrary offset to the start of the vmalloc VM area: the * current 8MB value just... 阅读全文
posted @ 2011-06-17 15:53 katago 阅读(2980) 评论(1) 推荐(0) 编辑

4745g linux驱动

摘要: http://partner.atheros.com/Drivers.aspx 下载AR81Family Linux Driver 阅读全文
posted @ 2011-06-17 15:42 katago 阅读(248) 评论(0) 推荐(0) 编辑

kirkwood cpu

摘要: http://www.marvell.com/products/processors/embedded/kirkwood/ Mbus-Light (Mbus-L) separate interfaces to DDR controller and to Mbus bridge. 阅读全文
posted @ 2011-06-15 16:29 katago 阅读(197) 评论(0) 推荐(0) 编辑

linux程序读写uboot env变量

摘要: http://jiangjqian.blog.51cto.com/1040847/404097 分析发现uboot env的存储格式是,开始4个字节是crc32,后面是一个接一个\0结束的字符串,每个串都是envname=enavalue的格式。 挪用uboot部分的相关代码,实现以下函数: int set_env_ptr(unsigned char * ptr); char *get_env... 阅读全文
posted @ 2011-06-14 23:07 katago 阅读(791) 评论(0) 推荐(0) 编辑

XPLC

摘要: ther Component Systems Microsoft COM (and DCOM/COM+/.Net/MSMQ/ActiveX) Mozilla XPCOM theKompany Korelib TrollTech Qt Component Model Apache 1.x module API Apache 2.x hooks and modules API Mozilla/Nets... 阅读全文
posted @ 2011-06-14 22:16 katago 阅读(260) 评论(0) 推荐(0) 编辑

pwm

摘要: Pulse Width Modulation -- 脉宽调制 /脉冲宽度调制 脉冲宽度调制(PWM)是利用微处理器的数字输出来对模拟电路进行控制的一种非常有效的技术,广泛应用在从测量、通信到功率控制与变换的许多领域中。脉宽调制是开关型稳压电源中的术语。这是按稳压的控制方式分类的,除了PWM型,还有PFM型和PWM、PFM混合型。脉宽调制式开关型稳压电路是在控制电路输出频率不变的情况下,通过电压反馈... 阅读全文
posted @ 2011-06-10 14:37 katago 阅读(781) 评论(0) 推荐(0) 编辑

cut命令如何截取以空格隔开的字段

摘要: 你的文件分隔符恐怕不止一个空格(一定的who生成的): 用awk: awk '{print $2}' file 一定要用cut的话: cat file|tr -s ' '|cut -d' ' -f2 阅读全文
posted @ 2011-06-09 15:23 katago 阅读(2021) 评论(0) 推荐(0) 编辑

MAC地址加减1算法

摘要: please input the mac : 00:1A:A9:AA:BB:CC new mac for decrease is :00:1A:A9:AA:BB:CB new mac for increase is :00:1A:A9:AA:BB:CD #define BOOL int #define FALSE 0 #define TRUE 1 #include <stdio.h> #incl... 阅读全文
posted @ 2011-06-09 14:31 katago 阅读(3564) 评论(0) 推荐(0) 编辑
上一页 1 ··· 103 104 105 106 107 108 109 110 111 ··· 128 下一页