日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Quectel EC200N-CN驱动移植记录

發(fā)布時間:2023/12/14 编程问答 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Quectel EC200N-CN驱动移植记录 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
一、 1)add PID VID kernel_dir/drivers/usb/serial/option.c?option_ids[]? { USB_DEVICE(0x2C7C, 0x6002) }, /* Quectel EC200N-CN */

2)add zero packet mechanism

kernel_dir/drivers/usb/serial/usb_wwan.c

if (dir == USB_DIR_OUT) { struct usb_device_descriptor *desc = &serial->dev->descriptor; if (desc->idVendor == cpu_to_le16(0x2C7C)) urb->transfer_flags |= URB_ZERO_PACKET; }

3) use ecm or rndis

kernel_dir/drivers/usb/serial/option.c

static int option_probe(struct usb_serial *serial, const struct usb_device_id *id) { struct usb_wwan_intf_private *data; …… #if 1 //Added by Quectel if (serial->dev->descriptor.idVendor == cpu_to_le16(0x2C7C)) { __u16 idProduct = le16_to_cpu(serial->dev->descriptor.idProduct); //Quectel EC200S's interface 0 can be used as USB Network device (ecm, rndis) if (serial->interface->cur_altsetting->desc.bInterfaceClass != 0xFF) return -ENODEV; } #endif /* Store device id so we can use it during attach. */ usb_set_serial_data(serial, (void *)id); return 0; }

4)make menuconfig

enable some modules

二、

uboot set bootcmd and bootargs

setenv bootcmd 'mmc dev 0; fatload mmc 0:1 80800000 zImage; fatload mmc 0:1 83000000 imx6ull-alientek-emmc.dtb; bootz 80800000 - 83000000;'
setenv bootargs 'console=ttymxc0,115200 root=/dev/mmcblk0p2 rootwait rw'

saveenv

三、

sd card make partitions and move zImage .dtb and rootfs to sd card

make partitions, init partitions, mount, cp:sd卡分區(qū),fdisk 分區(qū)1 fat格式 分區(qū)2 ext4格式;mkfs.vfat mkfs.ext4格式化分區(qū)1、2;mount掛載分區(qū)1 分區(qū)2到虛擬機上,-t指明要掛載的文件系統(tǒng)類型,df -h查看掛載情況;cp復制內核鏡像、設備樹到分區(qū)1,復制根文件系統(tǒng)到分區(qū)2

四、

ecm 設置

at+qnetdevctl=1,1,1僅連接網(wǎng)卡一次 at+qnetdevctl=3,1,1自動連接網(wǎng)卡

總結

以上是生活随笔為你收集整理的Quectel EC200N-CN驱动移植记录的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內容還不錯,歡迎將生活随笔推薦給好友。