Android 3G调试

Android 3G调试(usb接口)

 在内核配置中打开USB support 中的 USB Modem 和一些常用的功能 
 如 USB Serial Converter support  USB Mass Storage support  EHCI HCD (USB 2.0) support OHCI HCD support  SCSI device support(u盘需要)

 在drivers/usb/serial/option.c中添加VERDOR_ID和PRODUCT_ID
 如
             #define THINKWILL_VERDOR_ID         0x19f5
             #define THINKWILL_PRODUCT_ID            0x9013

在数组static const struct usb_device_id option_ids[]中添加一下代码
             { USB_DEVICE(THINKWILL_VERDOR_ID, THINKWILL_PRODUCT_ID)},


编译内核并烧写启动内核, 看log中是否有GSM等字符串出现, 察看是否有/dev/ttyUSB0 /dev/ttyUSB1 /dev/ttyUSB2 /dev/ttyUSB3 /dev/ttyUSB4
如有磔,就说明3G模块驱动成功了

你可能感兴趣的:(android,linux,ARM)