Toggle navigation
首页
(current)
问答
文章
话题
商城
登录
注册
Air720U在linux下的驱动修改
> 参考[Air720模块Linux USB驱动以及PPP拨号说明](https://ask.openluat.com/article/37)。 `Air720U`与`Air720`的驱动修改方式一致,都需要添加对应的`Vendor ID`和`Product ID`。增加如下...
> 参考[Air720模块Linux USB驱动以及PPP拨号说明](https://oldask.openluat.com/article/37)。 ![](/static/editormd/php/../uploads/5_97752.png) 查看模块的`vid`与`pid`,分别是**1782**和**4e00**。 `Air720U`与`Air720`的驱动修改方式一致,都需要添加对应的`Vendor ID`和`Product ID`。增加如下代码: ```c // option.c static const struct usb_device_id option_ids[] = { { USB_DEVICE(0x1782, 0x4e00) }, ... }; static int option_probe(struct usb_serial *serial, const struct usb_device_id *id) { ... if (dev_desc->idVendor == cpu_to_le16(0x1782) && dev_desc->idProduct == cpu_to_le16(0x4e00) && iface_desc->bInterfaceNumber <= 1) { return -ENODEV; } ... } ``` 剩余部分请参考Air720的驱动修改来操作。
发表于 2020-02-20 16:16
阅读 ( 2635 )
3 推荐
收藏
你可能感兴趣的文章
相关问题
0 条评论
请先
登录
后评论
戎旺旺
4 篇文章
作家榜
»
技术销售Delectate
43 文章
陈夏
26 文章
国梁
24 文章
miuser
21 文章
晨旭
20 文章
朱天华
19 文章
金艺
19 文章
杨奉武
18 文章
×
发送私信
发给:
内容:
×
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!