随笔分类 -  驱动内核

上一页 1 ··· 10 11 12 13 14 15 16 17 18 下一页

驱动内核
libusb_control_setup
摘要:libusb_fill_control_transfer(transfer, devh, buf, ctrl_urb_complete_cb, utrans, 1000); transfer->flags = LIBUSB_TRANSFER_FREE_BUFFER; if (libusb_submi 阅读全文

posted @ 2019-10-30 09:39 lydstory 阅读(452) 评论(0) 推荐(0) 编辑

libusb_submit_transfer 异步通信libusb
摘要:https://bbs.csdn.net/topics/391012708?list=lz 阅读全文

posted @ 2019-10-28 17:28 lydstory 阅读(1348) 评论(0) 推荐(0) 编辑

linux syslog支持 ubuntu
摘要:linux syslog支持 linux syslog支持 linux syslog支持 ??????? https://wenku.baidu.com/view/8cc6b50a02020740be1e9bf5.html #include <syslog.h> 阅读全文

posted @ 2019-10-28 15:46 lydstory 阅读(498) 评论(0) 推荐(0) 编辑

类型强制转换
摘要:返回值 函数参数 类型强制转换 阅读全文

posted @ 2019-10-28 15:06 lydstory 阅读(111) 评论(0) 推荐(0) 编辑

ubuntu libevent
摘要:https://blog.csdn.net/u013271326/article/details/78230788 阅读全文

posted @ 2019-10-28 14:26 lydstory 阅读(154) 评论(0) 推荐(0) 编辑

纯c中声明变量
摘要:count 声明位置错了,纯c中声明变量全部放在main函数里,最前面的位置,要么vc6.0会报错; 修改 #include <stdio.h> int main(void) { int count; printf("\n**********\n"); for (count=1;count<=8;++count) printf("\n* *"); printf("\n**********\n"); 阅读全文

posted @ 2019-10-28 11:14 lydstory 阅读(192) 评论(0) 推荐(0) 编辑

windows抓usb包 tcpdump???
摘要:wireshark只是展示 阅读全文

posted @ 2019-10-28 10:14 lydstory 阅读(359) 评论(0) 推荐(0) 编辑

libusb bulk
摘要:https://github.com/IzyaSoft/EasyUsb https://github.com/ztguang/libusb-usbip-bulktransfer/blob/master/test_libusb.c https://github.com/wangbaiqiang/lib 阅读全文

posted @ 2019-10-28 00:00 lydstory 阅读(253) 评论(0) 推荐(0) 编辑

qt libusb
摘要:https://github.com/Kakadu/Qt_libusb https://github.com/mcvsama/libusbcc/tree/master/src/libusbcc https://github.com/tianxiejack/libusbTest/blob/master 阅读全文

posted @ 2019-10-27 23:25 lydstory 阅读(341) 评论(0) 推荐(0) 编辑

TAILQ_HEAD_INITIALIZER
摘要:https://blog.csdn.net/juzihongle1/article/details/76598723 阅读全文

posted @ 2019-10-27 22:31 lydstory 阅读(599) 评论(0) 推荐(0) 编辑

__attribute__((packed));
摘要:gcc 对齐 阅读全文

posted @ 2019-10-27 22:24 lydstory 阅读(100) 评论(0) 推荐(0) 编辑

libusb_transfer
摘要:http://libusb.sourceforge.net/api-1.0/structlibusb__transfer.html int libusb_control_transfer(libusb_device_handle *dev_handle, uint8_t bmRequestType, 阅读全文

posted @ 2019-10-27 22:15 lydstory 阅读(633) 评论(0) 推荐(0) 编辑

linux ntp
摘要:NTPPORT 阅读全文

posted @ 2019-10-27 22:02 lydstory 阅读(122) 评论(0) 推荐(0) 编辑

USB大容量传输
摘要:https://blog.csdn.net/cuihuan2222/article/details/44727307 阅读全文

posted @ 2019-10-26 21:47 lydstory 阅读(204) 评论(0) 推荐(0) 编辑

cypress 3
摘要:https://blog.csdn.net/u014647208/article/details/80525226 https://blog.csdn.net/kulala082/article/details/68942168 windows测试使用说明 阅读全文

posted @ 2019-10-26 21:37 lydstory 阅读(156) 评论(0) 推荐(0) 编辑

libusb 3.0
摘要:1)usb3.0 在windows使用winusb时,出现ReadFile的input buffer 太大时,读不到数据问题? 2)linux下,usb 3.0 libusb_claim_interface fail ,error=-5 对于一些linux标准支持的设备(如HID设备),可能需要使用 阅读全文

posted @ 2019-10-26 21:27 lydstory 阅读(1179) 评论(0) 推荐(0) 编辑

libusb_bulk_transfer返回值不是0
摘要:libusb_bulk_transfer返回值不是0 libusb_bulk_transfer返回值不是0libusb_bulk_transfer返回值不是0 ????? 阅读全文

posted @ 2019-10-25 13:40 lydstory 阅读(799) 评论(0) 推荐(0) 编辑

err:LIBUSB_SUCCESS / LIBUSB_TRANSFER_COMPLE
摘要:err:LIBUSB_SUCCESS / LIBUSB_TRANSFER_COMPLE err:LIBUSB_SUCCESS / LIBUSB_TRANSFER_COMPLE err:LIBUSB_SUCCESS / LIBUSB_TRANSFER_COMPLE err:LIBUSB_SUCCESS 阅读全文

posted @ 2019-10-25 13:19 lydstory 阅读(279) 评论(0) 推荐(0) 编辑

lib异步中断
摘要:基于libusbx-1.0.18-rc1,libusbx现已重新merage到libusb。1. 初始化使用libusb_init初始化libusb,如果是单设备通信,ctx参数可以传NULL,表示使用默认Context.2. 注册hotplug事件侦听从1.0.16开始,libusb支持hotpl 阅读全文

posted @ 2019-10-25 10:41 lydstory 阅读(387) 评论(0) 推荐(0) 编辑

libusb_bulk_transfer 说明
摘要:libusb_bulk_transfer函数说明 API_EXPORTED int libusb_bulk_transfer(struct libusb_device_handle *dev_handle, API_EXPORTED int libusb_bulk_transfer(struct l 阅读全文

posted @ 2019-10-25 10:37 lydstory 阅读(909) 评论(0) 推荐(0) 编辑

上一页 1 ··· 10 11 12 13 14 15 16 17 18 下一页

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

点击右上角即可分享
微信分享提示