全部博文(54)
发布时间:2013-07-25 09:14:37
#include #include#include #include #include #include #include #include #include /*--------------------------*/ //具体开发板相关#define LED_ON _IO('k', 0)#define LED_OFF _IO('k'.........【阅读全文】
发布时间:2013-07-23 20:35:05
1.硬件+软件(linux)2.pc -----bios(引导程序)<初始化一些硬件:加载操作系统>-----win/linux..。。------(windows操作系统,文件管理在一个硬盘上,linux os文件管理是分开的)3.开发板启动的流程:arm开发板----uboot(引导程序)---------kernel---------文件系统移植uboot:uboot已经移植在nand中。初始.........【阅读全文】
发布时间:2013-07-23 20:33:18
cp :命令行参数int main(int argc,char *argv[])文件打开openint open(const char *pathname, int flags);pathname:"./1.c" "/mnt/hgfs/桌面/share/第五天/day5/1.c"open("./1.c",O_RDWR);creat:fd = open(F_NAME,O_RDWR|O_CREAT,777);O_RDWR|O_CREAT 操作属性 777 代表文件本身的属性文件的.........【阅读全文】
发布时间:2013-07-23 20:31:38
控制语句顺序。。。。。---------------分支if ....else if 表达式 else 表达式//---------------ifelse ifelse//----------if XXXX {if(XXX){}else{}}else{} switch ...caseswitch XXXXcase XX:{XXXXX}//break;case XX:{XXXX}break;default:(XXXXX.........【阅读全文】
发布时间:2013-07-23 20:30:03
重点:输出打印函数(如:printf)输入:scanf sscanf-----<自学内容>:格式调整getchar ------error:EOF(-1)gets --------不建议使用,报警告,引起访问越界fgets -------如果一定要用,建议使用,不会引起访问越界输出:(经常做打印调试-----结合宏)__FUNCTION__ __LIN.........【阅读全文】