主机:Ubuntu 10.10。编写程序:/** hello.c** Simple hello world 2.6 driver module*** This program is free software; you can redistribute it and/or modify* it under the terms of the GNU General Public License a...
嵌入式系统词汇表AASIC(专用集成电路)Application-Specific Integrated Circuit. A piece of custom-designed hardware in a chip.专用集成电路。一个在一个芯片上定制设计的硬件。address bus (地址总线)A set of electrical lines connected to the process...
使用宏定义在C语言中,宏是产生内嵌代码的唯一方法。对于嵌入式系统而言,为了能达到性能要求,宏是一种很好的代替函数的方法。写一个"标准"宏MIN ,这个宏输入两个参数并返回较小的一个:错误做法:#define MIN(A,B) ( A <= B ? A : B )正确做法:#define MIN(A,B) ((A)<= (B) ? (A) :...