写一个usb的案例程序,插入U盘给个提示

//写一个usb的案例程序,插入U盘给个提示

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <linux/types.h>
#include <linux/usbdevice_fs.h>
#include <linux/usb/ch9.h>
#include <linux/usb/functionfs.h>





int main(int argc, char *argv[])
{
    int fd;
    int ret;
    int i;
    int count;
    char buf[1024];
    fd = open("/dev/bus/usb/001/002", O_RDWR);
    if(fd < 0)
    {
        perror("open");
        return -1;
    }
    ret = read(fd, buf, 1024);
    if(ret < 0)
    {
        perror("read");
        return -1;
    }
    printf("read %d bytes\n", ret);
    printf("%s\n", buf);
    close(fd);
    return 0;
}

 

© 版权声明
THE END
喜欢就支持一下吧
点赞15 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称常用语 夸夸
夸夸
还有吗!没看够!
表情代码图片

    暂无评论内容