发布时间:2013-01-11 07:52:02
下载地址?
http://pan.baidu.com/share/link?shareid=192105&uk=1577556057
1. VC6 写USB HID Debug, 界面如下:......【阅读全文】
发布时间:2013-01-09 08:01:07
2个文件, 参考 uboot中的代码1. ctype.h 点击(此处)折叠或打开#ifndef _LINUX_CTYPE_H#define _LINUX_CTYPE_H/* * This ctype does not handle EOF like the standard C * library is required to. */#define _U 0x01 /* upper */#define _L 0x02 ......【阅读全文】
发布时间:2013-01-06 10:09:40
官方FTP下载: ftp://ftp.denx.de/pub/u-boot/目录树 |--board|--common|--cpu|--disk|--doc|--drivers|--dtt|--examples|--fs|--include|--lib_arm|--lib_generic|--net|--post|--rtc|--tools 2. board:和一些已有开发板有关的文件. 每一个开发板都以一个子目录出现在当前目录中,比如说: leopard2a子目录中存放与我们开发板相关的配置文件.3. common:实现uboot命令行下支持的命令,每一条命令......【阅读全文】
发布时间:2013-01-05 14:08:52
http以post方式上传一个文件,构造其请求头和消息报文 假设接受文件的网页程序位于 http://192.168.24.56/logsys/home/uploadIspeedLog!doDefault.html.假设我们要发送一个图片文件,文件名为“kn.jpg”, 首先客户端链接 192.168.24.56 后, 应该发送如下http 请求: POST/logsys/home/uploadIspeedLog!doDefault.html HTTP/1.1 Accept: text/plain, */* Accept-Language:......【阅读全文】
发布时间:2013-01-04 13:38:44
#define IO_BUFFER 256#define BUFFER_SIZE 1024#define MAX_FRAME_SIZE (256*1024)#define TEN_K (10*1024)/* the boundary is used for the M-JPEG stream, it separates the multipart stream of pictures */#define BOUNDARY "boundarydonotcross"#define STD_HEADER "Connection: close\r\n" \ &n......【阅读全文】