-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
quectel-cm: add ECM support for EC200D-EU/EC200G/EC600/EG915Q-NA
Signed-off-by: Tianling Shen <[email protected]> (cherry picked from commit 150982a)
- Loading branch information
1 parent
378277c
commit d39318f
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- a/device.c | ||
+++ b/device.c | ||
@@ -342,16 +342,20 @@ BOOL qmidevice_detect(char *qmichannel, | ||
if (profile->usb_dev.idVendor == 0x2c7c) { //Quectel | ||
switch (profile->usb_dev.idProduct) { //EC200U | ||
case 0x0901: //EC200U | ||
+ case 0x0902: //EC200D-EU | ||
+ case 0x0904: //EC200G | ||
case 0x8101: //RG801H | ||
atIntf = 2; | ||
break; | ||
case 0x0900: //RG500U | ||
+ case 0x0903: //EC600 | ||
atIntf = 4; | ||
break; | ||
case 0x6026: //EC200T | ||
case 0x6005: //EC200A | ||
case 0x6002: //EC200S | ||
case 0x6001: //EC100Y | ||
+ case 0x6007: //EG915Q-NA | ||
atIntf = 3; | ||
break; | ||
default: |