【转】1>/dev/null 2>&1的含义
crifan 16年前 (2010-04-12) 1959浏览
1>/dev/null 2>&1的含义 shell中可能经常能看到:>/dev/null 2>&1 命令的结果可以通过%>的形式来定义输出 /dev/null 代表空设备文件 > 代表重定向到...
工作相关的技术文章
crifan 16年前 (2010-04-12) 1959浏览
1>/dev/null 2>&1的含义 shell中可能经常能看到:>/dev/null 2>&1 命令的结果可以通过%>的形式来定义输出 /dev/null 代表空设备文件 > 代表重定向到...
crifan 16年前 (2010-04-10) 2400浏览
Introduction to Serial Peripheral Interface By David Kalinsky and Roee Kalinsky Embedded Systems Design (02/01/02, 11...
crifan 16年前 (2010-04-09) 2049浏览
[转]Qt Qt/E Qtopia 的关系 Qt的授权是分为两条线,商业版和开源版。如果使用商业版的Qt,那么开发出的程序可以是私有的和商业的;如果使用的是开源版的Qt,由于其使用的是GPL协议,那么可发出的程序也必须是GPL的。不过自从qt 4.5...
crifan 16年前 (2010-04-08) 1859浏览
!!! seems that the nand and SSP1(Nor chip m25p40) can not concurrently work, for if use nand, will use naf alternative mode, ...
crifan 16年前 (2010-04-08) 2613浏览
【整理】strtol函数简介 strtol,将字符串转换成长整型数。一般用法为: #include <stdlib.h> 。。。 value = strtol(string, NULL, 0); 就可以实现将字符串string自动判断是1...
crifan 16年前 (2010-04-08) 4251浏览
[整理]getopt()或getopt_long()与optarg getopt或getopt_long 是一个Linux下面的库函数,作用就是解析命令行的输入。其目的就是减轻程序员自己的负担,可以直接使用系统提供的库函数,方便、高效和更安全地解析命...
crifan 16年前 (2010-04-07) 7293浏览
【问题】 编译Linux下面的代码,经常会遇到这种错误: undefined reference to `__udivdi3′ 【解决过程】 之前遇到过几次了,都是类似的原因导致此问题的。后来才了解,其根本原因: 嵌入式中,32位系统中(...
crifan 16年前 (2010-04-06) 2912浏览
Samsung K9F1G08U 128 MB; SLC2K; Single CE 1 1, 2, 3 or 4 Samsung K9F2G08U 256 MB; SLC2K; Single CE 1 1, 2, 3 or 4 Samsung K...
crifan 16年前 (2010-03-30) 6041浏览
UTMI+/ULPI 1. UTMI USB 2.0 Transceiver Macrocell Interace defines an interface between two IP blocks: the USB Transceiver Ma...
crifan 16年前 (2010-03-30) 2610浏览
【问题】 编译警告:dma_map_single discards qualifiers from pointer target type 【解决办法】 原先的函数如下: static void as353x_nand_write_page_hwec...