技术的乐趣在于分享,欢迎多多交流,多多沟通。
全部博文(877)
发布时间:2014-09-09 19:10:15
http://blog.csdn.net/leo_wonty/article/details/7418261简介USB Mass storage Device协议即海量存储设备协议适用于硬盘,U盘等大容量存储设备。协议使用的接口端点有BulkIn、BulkOut和Interrupt端点。该设备类又包含6个独立的子类以及3种传输协议。bInterface.........【阅读全文】
发布时间:2014-09-05 12:57:25
//test for unsigned int and int#include <stdio.h>int main(void){ unsigned int foo;unsigned int i; int val = -4; foo = 3; //foo -= 7; i = foo + val; printf("%x\n",i); return 0;}.........【阅读全文】