本帖最后由 herocsz 于 2009-8-28 11:09 编辑
usb设备插入到板子上后出现
cdc_acm 1-1:1.0: ttyACM0: USB ACM device
请问ttyACM0是种什么样的设备?
类似于usb转串口的那种吗?
对它操作是不是和串口操作一样的啊? 比如:
ttyACM0fd = open("/dev/ttyACM0", O_RDWR);
接着设置波特率和数据位?
然后如果要往ttyACM0中传数据就是用write(,,);
接收数据就用read(,,);
对吗? |