minidlna support now Samsung TV C550/C650 (thx amir909)
[tomato.git] / release / src / router / usbmodeswitch / device_reference.txt
bloba233f498e6942ea0c70da6275efc2c6a3af21e7f
2 # Device and Configuration Reference (UTF-8 encoding used)
4 # Last modified: 2011-02-26
6 # Collection of configurations for usb_modeswitch, a mode switching
7 # tool for controlling flip flop (multiple mode) USB devices
9 # Detailed instructions and a friendly forum on the homepage:
10 # http://www.draisberghof.de/usb_modeswitch
12 # You may want to check for a newer version of this file at:
13 # http://www.draisberghof.de/usb_modeswitch/device_reference.txt
16 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
18 # Important! This file is just a reference! Use the data package!
20 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
23 # There is no guarantee that this file is error-free!
25 # The actual entries are further down, after the command reference.
28 # For custom settings:
29 # Numbers can be decimal or hexadecimal, MessageContents MUST be
30 # hexadecimal without prepended "0x". Digits 9-16 in the known
31 # message strings are arbitrary; I set them to "12345678". If more
32 # than one message is used for a configuration, digits 9-16 must be
33 # unique for every MessageContent.
36 # What it all means (short command line flags appended):
39 # * DefaultVendor            -v <hex number>
40 # * DefaultProduct           -p <hex number>
42 # This is the ID the USB device shows after having been plugged in.
43 # The program needs this; if not found -> no action.
46 # * TargetVendor             -V <hex number>
47 # * TargetProduct            -P <hex number>
49 # These are the IDs of the USB device after successful mode switching.
50 # They are optional, but I recommend to provide them for better analysis.
51 # You definitely need them if you enable CheckSuccess (see below)
54 # * TargetProductList        (file only) <comma separated hex strings>
56 # Like TargetProduct, but more than one possibility. Only used in automated
57 # config files (in /usr/share/usb_modeswitch).
60 # * TargetClass              -C <hex number>
62 # Some devices don't change IDs. They only switch their device class (or
63 # rather the class of the first interface).
64 # If the device has the target class -> no action (and vice versa)
67 # * MessageEndpoint          -m <hex number>
68
69 # A kind of address inside the interface to which the "message"
70 # (the sequence that does the actual switching) is directed.
71 # Starting from version 0.9.7 the MessageEndpoint is autodetected
72 # if not given
75 # * MessageContent           -M <hex string>
77 # A hex string containing the "message" sequence; it will be
78 # sent as a USB bulk transfer
81 # * MessageContent2, ...3    -2/-3 <hex string>
83 # Additional "messages". Use with "NeedResponse"!
86 # * ReleaseDelay             -w <milliseconds>
88 # Waiting time after message transfers. Helps with some sensitive devices
89 # by preventing any device access after sending the switching command
92 # * ResponseEndpoint         -r <hex number>
93 # * NeedResponse <0/1>       -n
95 # Some devices were reported to require receiving the response of the
96 # bulk transfer to do the switching properly. Usually not needed.
97 # Starting from version 1.0.0 the ResponseEndpoint is autodetected
98 # if not given
101 # * DetachStorageOnly <0/1>  -d
103 # Some devices just need to be detached from the usb-storage
104 # driver to initiate the mode switching. Using this feature
105 # instead of removing the whole usbstorage module keeps other
106 # storage devices working.
109 # * HuaweiMode <0/1>         -H
111 # Some Huawei devices can be switched by a special control
112 # message.
115 # * SierraMode <0/1>         -S
117 # Some Sierra devices can be switched by a special control
118 # message.
121 # * SonyMode <0/1>           -O
123 # Some Sony-Ericsson devices can be switched by a special control
124 # message. This is experimental and might not have a stable result
126 # * KobilMode <0/1>         -T
128 # Some Kobil devices can be switched by a special control
129 # message.
132 # * ResetUSB <0/1>           -R
134 # Some devices need a rougher treatment. If the switching seems
135 # to do something (run udevmonitor), but your system does not reflect
136 # it, try this somewhat brutal method to do a reset after switching.
137 # Mind that if your device switched OK before, this will probably set
138 # it back to storage mode ...
141 # * Configuration            -u <hex number>
143 # Some devices offer a "clean" way of switching by selecting a different
144 # internal configuration. This is what every manufacturer should have
145 # done, as it is covered by the USB specification
148 # * Interface                -i <hex number>
149 # * AltSetting               -a <hex number>
151 # More USB parameter to help with tricky devices and for doing lots
152 # of cruel experiments ...
153 # For example, the "Interface" parameter can be "abused" to detach
154 # a driver from a specific interface of a composite device (combine
155 # with "-d")
157 ## Note:
158 ## AltSetting/Configuration changes and ResetUSB are executed after all
159 ## other steps and can be combined or used on their own (e.g. a reset
160 ## might have the same effect as a manual replug)
163 # * InquireDevice <0|1>      -I (disables inquiry)
165 # The standard since 1.0.0 is to do a SCSI inquiry on the default device
166 # before other actions. This gives additional info for identifying a device
167 # without ambiguities. If it causes trouble with your device, just disable.
168 # Mostly useful for manual experiments
171 # * CheckSuccess             -s <number>
173 # Check continuously if the switch succeeded for max <number> seconds.
174 # First, an interface access test: most devices vanish after
175 # switching and can't be accessed anymore.
176 # Second, a recount of target devices: one more than at the initial
177 # count, at the same bus with a higher device number -> device
178 # switched fine.
179 # It's safe to give a higher value than needed; checking stops as
180 # soon as the target device is found
183 # * NoDriverLoading <0|1>    (no command line parameter)
185 # The binary tells the wrapper script NOT to check for and initiate
186 # binding of the serial driver after switching.
187 # Useful for non-modem devices (WiMAX, WLAN etc.); modem devices will
188 # be bound to the serial modem driver if they are not taken care of
189 # otherwise
193 # -> All other entries are just ignored <-
196 # Additional command line flags:
198 # Verbose output             -W
199 # No output at all           -q
200 # Other config file          -c <file>
203 # For filling in all this information for an unknown device,
204 # see instructions and links on the homepage:
205 # http://www.draisberghof.de/usb_modeswitch
207 # If you find working codes and configurations, please contribute
208 # them!
211 #######################################################
212 # Option GlobeSurfer Icon (aka "Vodafone EasyBox")
214 # The message SHOULD be the same for all Option devices
216 DefaultVendor=  0x05c6
217 DefaultProduct= 0x1000
219 TargetVendor=   0x0af0
220 TargetProduct=  0x6600
222 MessageContent="55534243123456780000000000000601000000000000000000000000000000"
225 #######################################################
226 # Option GlobeSurfer Icon 7.2 
228 # Contributor: The Pharscape Forum
230 DefaultVendor=  0x05c6
231 DefaultProduct= 0x1000
233 TargetVendor=   0x0af0
234 TargetProduct=  0x6901
236 MessageContent="55534243123456780000000000000601000000000000000000000000000000"
239 ########################################################
240 # Option GlobeTrotter GT MAX 3.6 (aka "T-Mobile Web'n'walk Card Compact II")
242 # Contributor: Bernd Holzmüller
244 DefaultVendor=  0x05c6
245 DefaultProduct= 0x1000
247 TargetVendor=   0x0af0
248 TargetProduct=  0x6600
250 MessageContent="55534243123456780000000000000601000000000000000000000000000000"
252 # ResponseEndpoint=0x84
254 NeedResponse=1
257 ########################################################
258 # Option GlobeTrotter GT MAX "7.2 Ready"
260 # Contributors: Lucas Benedicic, Morgwai Kotarbinski
262 DefaultVendor=  0x05c6
263 DefaultProduct= 0x1000
265 TargetVendor=   0x0af0
266 TargetProduct=  0x6701
268 MessageContent="55534243123456780000000000000601000000000000000000000000000000"
271 ########################################################
272 # Option GlobeTrotter EXPRESS 7.2 (aka "T-Mobile wnw Express II")
274 # Contributor: Fridtjof Busse
276 DefaultVendor=  0x05c6
277 DefaultProduct= 0x1000
279 TargetVendor=   0x0af0
280 TargetProduct=  0x6701
282 MessageContent="55534243123456780000000000000601000000000000000000000000000000"
284 # Response reading needed according to one (1) report
285 NeedResponse=1
288 #######################################################
289 # Option GlobeSurfer Icon 7.2, new firmware (HSO driver)
291 # Vendor/ProductID don't change when switching, only the device
292 # class does. Most new Option devices work with this. Just adapt IDs!
293 # HSO driver support is available at Pharscape (www.pharscape.org)
295 # Contributor: Paul Hardwick
297 DefaultVendor=  0x0af0
298 DefaultProduct= 0x6911
300 TargetClass=    0xff
302 MessageContent="55534243123456780000000000000601000000000000000000000000000000"
305 ########################################################
306 # Option iCON 210
307 # PROLiNK PHS100 (various looks)
308 # Hyundai Mobile MB-810
310 # One report of switching with DetachStorageOnly. Needs at least
311 # a second to settle before binding to usbserial
313 # Contributor: wahlm, Peter Kraker, Pakdhetimin Sekum
315 DefaultVendor=  0x1e0e
316 DefaultProduct= 0xf000
318 TargetVendor=   0x1e0e
319 TargetProduct=  0x9000
321 MessageContent="555342431234567800000000000006bd000000020000000000000000000000"
323 NeedResponse=1
326 #######################################################
327 # Option iCON 225 HSDPA
329 # New Firmware. HSO driver support is available at Pharscape (www.pharscape.org)
331 # Contributor: Matti Viljanen
333 DefaultVendor=  0x0af0
334 DefaultProduct= 0x6971
336 TargetClass=    0xff
338 MessageContent="555342431223456780100000080000601000000000000000000000000000000"
341 #######################################################
342 # Option GlobeTrotter HSUPA Modem (aka "T-Mobile Web'n'walk Card Compact III')
344 # New Firmware. HSO driver support is available at Pharscape (www.pharscape.org)
346 # Contributor: Gerold Gruber
348 DefaultVendor=  0x0af0
349 DefaultProduct= 0x7011
351 TargetClass=    0xff
353 MessageContent="55534243785634120100000080000601000000000000000000000000000000"
356 ###################################################### 
357 # Option iCON 401
359 # HSO driver 
361 # Contributor: Vincent Teoh
363 DefaultVendor=  0x0af0
364 DefaultProduct= 0x7401
366 TargetClass=    0xff
368 MessageContent="55534243785634120100000080000601000000000000000000000000000000"
370 NeedResponse=1
373 ######################################################## 
374 # Vodafone K3760 (made by Option, HSO driver) 
376 # Contributor: The Solutor
378 DefaultVendor=  0x0af0
379 DefaultProduct= 0x7501
381 TargetClass=    0xff
383 MessageContent="55534243785634120100000080000601000000000000000000000000000000"
386 ########################################################
387 # AT&T USBConnect Quicksilver (made by Option, HSO driver)
389 # Contributor: sissie from Bullteam
391 DefaultVendor=  0x0af0
392 DefaultProduct= 0xd033
394 TargetClass=    0xff
396 MessageContent="55534243785634120100000080000601000000000000000000000000000000"
399 ########################################################
400 # Huawei devices
402 # Contributor: Hans Kurent, Denis Sutter, Vincent Teoh
404 DefaultVendor=  0x12d1
405 DefaultProduct= 0x1003
407 TargetClass=    0xff
409 HuaweiMode=1
412 ########################################################
413 # Huawei E169
415 # Contributor: Dale Lane
417 DefaultVendor=  0x12d1
418 DefaultProduct= 0x1001
420 TargetClass=    0xff
422 # choose one of these:
423 DetachStorageOnly=1
424 HuaweiMode=1
427 ########################################################
428 # Huawei E180
430 # Contributor: Tom Dawahare
432 DefaultVendor=  0x12d1
433 DefaultProduct= 0x1414
435 TargetClass=    0xff
437 HuaweiMode=1
440 ########################################################
441 # Huawei E630
443 # There seem to be modem-only variants around - no storage,
444 # no switching
446 # Contributor: Joakim Wenrgren
448 DefaultVendor=  0x1033
449 DefaultProduct= 0x0035
451 TargetVendor=   0x12d1
452 TargetProduct=  0x1003
454 HuaweiMode=1
457 ########################################################
458 # ZTE MF620 (aka "Onda MH600HS")
460 # Probably works with DetachStorageOnly too
462 # Contributor: Flávio Moringa and others
464 DefaultVendor=  0x19d2
465 DefaultProduct= 0x2000
467 TargetVendor=   0x19d2
468 TargetProductList="0001"
470 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
471 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
473 NeedResponse=1
476 ########################################################
477 # ZTE MF622 (aka "Onda MDC502HS"), MF100 and others
479 # Contributor: andylog
481 DefaultVendor=  0x19d2
482 DefaultProduct= 0x2000
484 TargetVendor=   0x19d2
485 TargetProduct=  0x0002
487 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
488 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
490 NeedResponse=1
493 ########################################################
494 # ZTE MF628
496 # Captured with "usbmon". Has a micro SD slot which can be
497 # activated alternatively
499 # Contributor: Alvaro Lopes <alvieboy at alvie dot com>
501 DefaultVendor=  0x19d2
502 DefaultProduct= 0x2000
505 # To modem mode:
507 TargetVendor=   0x19d2
508 TargetProduct=  0x0015
510 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
511 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
513 NeedResponse=1
515 # To SD slot mode:
517 TargetVendor=   0x05c6
518 TargetProduct=  0x2001
520 MessageContent="55534243123456782000000080000a86010101180101010101000000000000"
522 NeedResponse=1
525 ########################################################
526 # ZTE MF622 (aka "Onda MDC502HS")
527 # ZTE MF626
528 # ZTE MF628+ (tested version from Telia / Sweden)
529 # ZTE MF633
530 # ZTE MF636 (aka "Telstra / BigPond 7.2 Mobile Card")
531 # ZTE MF637
533 # Contributor: Joakim Wennergren and others
535 DefaultVendor=  0x19d2
536 DefaultProduct= 0x2000
538 TargetVendor=   0x19d2
539 TargetProduct=  0x0031
541 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
542 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
544 NeedResponse=1
547 ########################################################
548 # ZTE MF638 (aka "Onda MDC525UP")
550 # Contributor: andylog
552 DefaultVendor=  0x19d2
553 DefaultProduct= 0x2000
555 TargetVendor=   0x19d2
556 TargetProduct=  0x0037
558 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
559 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
561 NeedResponse=1
564 ########################################################
565 # ZTE AC8710
566 # ZTE AC2726
567 # and others
569 # Many new ZTE devices use this sequence. There are
570 # several ID combinations check your default
572 # Contributor: Michael Khurtsiya, Amit Pundir and others
574 DefaultVendor=  0x19d2
575 DefaultProduct= 0xfff5
577 TargetVendor=   0x19d2
578 TargetProduct=  0xffff
580 # No. 2
582 DefaultVendor=  0x19d2
583 DefaultProduct= 0xfff6
585 TargetVendor=   0x19d2
586 TargetProduct=  0xfff1
588 # No. 3
590 DefaultVendor=  0x19d2
591 DefaultProduct= 0xfff5
593 TargetVendor=   0x19d2
594 TargetProduct=  0xfff1
596 MessageContent="5553424312345678c00000008000069f030000000000000000000000000000"
599 ########################################################
600 # ZTE AC2710 (EVDO) 
602 # Contributor: Wasim Baig
604 DefaultVendor=  0x19d2
605 DefaultProduct= 0xfff5
607 TargetVendor=   0x19d2
608 TargetProduct=  0xffff
610 MessageContent="5553424312345678c00000008000069f010000000000000000000000000000"
612 # Just for information: try it with the message from the AC8710 ...
615 ########################################################
616 # ZTE 6535-Z
618 # Contributor: David Taillandier
620 DefaultVendor=  0x19d2
621 DefaultProduct= 0x2000
623 TargetVendor=   0x19d2
624 TargetProduct=  0x0052
626 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
627 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
629 NeedResponse=1
632 ########################################################
633 # ONDA MT503HS
635 # Contributor: Lucio Asnaghi a.k.a. kRAkEn/gORe
637 DefaultVendor=  0x19d2
638 DefaultProduct= 0x2000
640 TargetVendor=   0x19d2
641 TargetProduct=  0x0002
643 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
644 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
646 NeedResponse=1
649 ########################################################
650 # ONDA MT505UP (most likely a ZTE model)
652 # Contributor: Alex Scortegagna
654 DefaultVendor=  0x19d2
655 DefaultProduct= 0x2000
657 TargetVendor=   0x19d2
658 TargetProduct=  0x0002
660 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
661 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
663 NeedResponse=1
666 ########################################################
667 # Novatel Wireless Ovation MC950D HSUPA
668 # Novatel Wireless Merlin XU950D
669 # Novatel Wireless Ovation 930D
671 # Contributor: Razvan Dragomirescu, Mike Kirk
673 DefaultVendor=  0x1410
674 DefaultProduct= 0x5010
676 TargetVendor=   0x1410
677 TargetProduct=  0x4400
679 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
680 NeedResponse=1
683 ########################################################
684 # Novatel U727 USB modem
686 # Modem only versions (no switching required) are around.
688 # Contributor: Chris Thielen
690 DefaultVendor=  0x1410
691 DefaultProduct= 0x5010
693 TargetVendor=   0x1410
694 TargetProduct=  0x4100
696 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
697 NeedResponse=1
700 ########################################################
701 # Novatel MC990D
703 # Contributor: Joakim Wennergren
705 DefaultVendor=  0x1410
706 DefaultProduct= 0x5020
708 Interface=      5
710 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
711 NeedResponse=1
714 ########################################################
715 # Novatel U760 USB modem
717 # Contributor: Richard Laager
719 DefaultVendor=  0x1410
720 DefaultProduct= 0x5030
722 TargetVendor=   0x1410
723 TargetProduct=  0x6000
725 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
726 NeedResponse=1
729 ########################################################
730 # Alcatel One Touch X020 (aka OT-X020, aka MBD-100HU, aka Nuton 3.5G), works with Emobile D11LC
731 # Alcatel One Touch X030 (aka OT-X030, aka Nuton NT36HD)
733 # Contributor: Aleksandar Samardzic, Marcelo Fernandez
735 DefaultVendor=  0x1c9e
736 DefaultProduct= 0x1001
738 TargetVendor=   0x1c9e
739 TargetProduct=  0x6061
741 MessageContent="55534243123456780000000000000606f50402527000000000000000000000"
744 ########################################################
745 # Alcatel X200/X060S
747 DefaultVendor=  0x1bbb
748 DefaultProduct= 0xf000
750 TargetVendor=   0x1bbb
751 TargetProduct=  0x0000
753 MessageContent="55534243123456788000000080000606f50402527000000000000000000000"
756 ########################################################
757 # AnyDATA ADU-500A, ADU-510A, ADU-510L, ADU-520A
759 # This ID gets an "Option" treatment by newer kernels.
760 # Use module option "option_zero_cd=2" with usb-storage.
761 # A kernel patch to fix the problem is pending
763 # Contributor: Vladimir Poluektov, Gabriel Smolar
765 DefaultVendor=  0x05c6
766 DefaultProduct= 0x1000
768 TargetVendor=   0x16d5
769 TargetProduct=  0x6502
771 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
772 NeedResponse=1
775 ########################################################
776 # BandLuxe C120
778 # Reportedly needs several switch calls in a certain order. See
779 # http://www.draisberghof.de/usb_modeswitch/bb/viewtopic.php?t=71
780 # This might be a case to try the new ResetUSB function
782 # Contributor: Alexander Czigler
784 DefaultVendor=  0x1a8d
785 DefaultProduct= 0x1000
787 TargetVendor=   0x1a8d
788 TargetProduct=  0x1002
790 MessageContent="55534243123456781200000080000603000000020000000000000000000000"
792 NeedResponse=1
795 ########################################################
796 # Solomon S3Gm-660
798 # Same notes apply as with the BandLuxe C120 above
800 # Contributor: Alexander Czigler
802 DefaultVendor=  0x1dd6
803 DefaultProduct= 0x1000
805 TargetVendor=   0x1dd6
806 TargetProduct=  0x1002
808 MessageContent="55534243123456781200000080000603000000020000000000000000000000"
810 NeedResponse=1
813 ########################################################
814 # C-motech D-50 (aka "CDU-680")
816 # Interesting notes about the device in the forum post at
817 # http://www.draisberghof.de/usb_modeswitch/bb/viewtopic.php?t=69
819 # Contributor: Alexander Czigler
821 DefaultVendor=  0x16d8
822 DefaultProduct= 0x6803
824 TargetVendor=   0x16d8
825 TargetProduct=  0x680a
827 MessageContent="555342431234567824000000800008ff524445564348470000000000000000"
830 ########################################################
831 # C-motech CGU-628 (aka "Franklin Wireless CGU-628A" aka "4G Systems XS Stick W12")
833 # Contributor: Mathias Picker
835 DefaultVendor=  0x16d8
836 DefaultProduct= 0xf000
838 TargetVendor=   0x16d8
839 TargetProduct=  0x6006
841 MessageContent="55534243d85dd88524000000800008ff524445564348470000000000000000"
844 ########################################################
845 # Toshiba G450
847 # Contributor: Mijail Anton
849 DefaultVendor=  0x0930
850 DefaultProduct= 0x0d46
852 TargetVendor=   0x0930
853 TargetProduct=  0x0d45
855 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
857 NeedResponse=1
860 ########################################################
861 # UTStarcom UM175 (distributor "Alltel")
863 # Contributor: Mark A. Ziesemer
865 DefaultVendor=  0x106c
866 DefaultProduct= 0x3b03
868 TargetVendor=   0x106c
869 TargetProduct=  0x3715
871 MessageContent="555342431234567824000000800008ff024445564348470000000000000000"
874 ########################################################
875 # Hummer DTM5731
877 # Contributor: "paul"
879 DefaultVendor=  0x1ab7
880 DefaultProduct= 0x5700
882 TargetVendor=   0x1ab7
883 TargetProduct=  0x5731
885 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
887 NeedResponse=1
890 ########################################################
891 # A-Link 3GU
893 # Contributor: A-Link Europe Ltd.
895 DefaultVendor=  0x1e0e
896 DefaultProduct= 0xf000
898 TargetVendor=   0x1e0e
899 TargetProduct=  0x9200
901 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
903 NeedResponse=1
906 ########################################################
907 # Sierra Wireless Compass 597
909 # Contributor: Vincent Teoh
911 DefaultVendor=  0x1199
912 DefaultProduct= 0x0fff
914 TargetVendor=   0x1199
915 TargetProduct=  0x0023
917 SierraMode=1
920 ########################################################
921 # Sierra Wireless AirCard 881U (most likely 880U too)
923 # Contributor: Vincent Teoh
925 DefaultVendor=  0x1199
926 DefaultProduct= 0x0fff
928 TargetVendor=   0x1199
929 TargetProduct=  0x6856
931 SierraMode=1
934 ########################################################
935 # Sony Ericsson MD400
937 # Special procedure, takes around 25 secs. on the whole
939 DefaultVendor=  0x0fce
940 DefaultProduct= 0xd0e1
942 TargetClass=    0x02
944 SonyMode=1
945 Configuration=2
948 ########################################################
949 # LG LDU-1900D EV-DO (Rev. A)
951 # Recommended init command: ATE0V1&D2&C1S0=0
953 # Contributor: Jérôme Oufella
955 DefaultVendor=  0x1004
956 DefaultProduct= 0x1000
958 MessageContent="55534243123456780000000000000aff554d53434847000000000000000000"
961 ########################################################
962 # Samsung SGH-Z810 USB (with microSD card)
964 # This ID gets a wrong "Option" treatment by newer kernels
965 # from 2.6.29 to 2.6.31
966 # Use module option "option_zero_cd=2" with usb-storage.
967 # Problem fixed in 2.6.32
969 # Contributor: A Friend
971 DefaultVendor=  0x05c6
972 DefaultProduct= 0x1000
974 TargetVendor=   0x04e8
975 TargetProduct=  0x6601
977 MessageContent="55534243123456780000000000000616000000000000000000000000000000"
980 ######################################################## 
981 # MobiData MBD-200HU
983 # Contributor: Stefan Olejnik
985 DefaultVendor=  0x1c9e
986 DefaultProduct= 0xf000
988 TargetVendor=   0x1c9e
989 TargetProduct=  0x9000
991 MessageContent="55534243123456788000000080000606f50402527000000000000000000000"
994 ########################################################
995 # ST Mobile Connect HSUPA USB Modem
997 # Use /dev/ttyUSB2 for connecting
999 # Contributor: Vincent Teoh
1001 DefaultVendor=  0x1c9e
1002 DefaultProduct= 0xf000
1004 TargetVendor=   0x1c9e
1005 TargetProduct=  0x9063
1007 MessageContent="55534243123456788000000080000606f50402527000000000000000000000"
1010 ########################################################
1011 # MyWave SW006 Sport Phone/Modem Combination
1013 # Has a card reader too, working fine
1015 # Contributor: Aaron Guidazzi
1017 DefaultVendor=  0x1c9e
1018 DefaultProduct= 0x9200
1020 TargetVendor=   0x1c9e
1021 TargetProduct=  0x9202
1023 MessageContent="55534243123456780000000000000606f50402527000000000000000000000"
1026 ########################################################
1027 # Cricket A600
1029 # Switches to ACM device. Might need a ResetUSB after switching - or not
1031 # Contributor: Jeffrey Hoogland
1033 DefaultVendor=  0x1f28
1034 DefaultProduct= 0x0021
1036 TargetVendor=   0x1f28
1037 TargetProduct=  0x0020
1039 MessageContent="555342431234567824000000800108df200000000000000000000000000000"
1041 # Afterwards (optional): "usb_modeswitch -v 0x1f28 -p 0x0020 -R"
1044 ########################################################
1045 # EpiValley SEC-7089 (featured by Alegro and Starcomms / iZAP)
1047 # Contributor: Chris Wright
1049 DefaultVendor=  0x1b7d
1050 DefaultProduct= 0x0700
1052 TargetVendor=   0x1b7d
1053 TargetProduct=  0x0001
1055 MessageContent="555342431234567824000000800008FF05B112AEE102000000000000000000"
1058 ########################################################
1059 # Samsung U209
1061 # Has a modem and a storage device after switching
1063 # Contributor: Arif Ahmed
1065 DefaultVendor=  0x04e8
1066 DefaultProduct= 0xf000
1068 TargetVendor=   0x04e8
1069 TargetProduct=  0x6601
1071 MessageContent="55534243123456780000000000000616000000000000000000000000000000"
1074 ########################################################
1075 # Huawei E270+  (HSPA+ modem)
1076 # Huawei E1762
1077 # Huawei E1820
1079 # Contributor: Paranoid Paranoia
1081 DefaultVendor=  0x12d1
1082 DefaultProduct= 0x1446
1084 TargetVendor=   0x12d1
1085 TargetProduct=  0x14ac
1087 MessageContent="55534243123456780000000000000011060000000000000000000000000000"
1090 ########################################################
1091 # Huawei E1550
1092 # Huawei E1750
1094 # Contributor: Anders Blomdell, Ahmed Soliman
1096 DefaultVendor=  0x12d1
1097 DefaultProduct= 0x1446
1099 TargetVendor=   0x12d1
1100 TargetProduct=  0x1001
1102 MessageContent="55534243123456780000000000000011060000000000000000000000000000"
1105 ########################################################
1106 # ZTE K3520-Z
1108 # Contributor: Paul McDermott
1110 DefaultVendor=  0x19d2
1111 DefaultProduct= 0x2000
1113 TargetVendor=   0x19d2
1114 TargetProduct=  0x0055
1116 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
1117 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
1119 NeedResponse=1
1122 ######################################################## 
1123 # MobiData MBD-200HU (aka 4G XS Stick W10/W14, aka Micromax MMX 300G,
1124 # aka ChinaBird CBCPL68)
1126 # Contributor: Chris
1128 DefaultVendor=  0x1c9e
1129 DefaultProduct= 0xf000
1131 TargetVendor=   0x1c9e
1132 TargetProduct=  0x9603
1134 MessageContent="55534243123456788000000080000606f50402527000000000000000000000"
1137 ######################################################## 
1138 # D-Link DWM-162-U5, Micromax MMX 300c
1140 # Contributor: Zhang Le
1142 DefaultVendor=  0x05c6
1143 DefaultProduct= 0x2001
1145 TargetVendor=   0x1e0e
1146 TargetProductList="ce16,cefe"
1148 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1150 NeedResponse=1
1153 ######################################################## 
1154 # Novatel MC760 3G
1156 # Contributor: Matt Roberds
1158 DefaultVendor=  0x1410
1159 DefaultProduct= 0x5031
1161 TargetVendor=   0x1410
1162 TargetProduct=  0x6002
1164 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1166 NeedResponse=1
1169 ########################################################
1170 # ZTE MF110 (Variant)
1172 # Contributor: Moritz Grosse-Wentrup
1174 DefaultVendor=  0x19d2
1175 DefaultProduct= 0x0053
1177 TargetVendor=   0x19d2
1178 TargetProduct=  0x0031
1180 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1181 MessageContent2="55534243876543212000000080000c85010101180101010101000000000000"
1183 NeedResponse=1
1186 ########################################################
1187 # Philips TalkTalk (NXP Semiconductors "Dragonfly")
1190 DefaultVendor=  0x0471
1191 DefaultProduct= 0x1237
1193 TargetVendor=   0x0471
1194 TargetProduct=  0x1234
1196 MessageContent="5553424312345678000000000000061b000000030000000000000000000000"
1198 NeedResponse=1
1201 ########################################################
1202 # HuaXing E600 (NXP Semiconductors "Dragonfly")
1204 # Contributor: Emfox Zhou
1206 DefaultVendor=  0x0471
1207 DefaultProduct= 0x1237
1209 TargetVendor=   0x0471
1210 TargetProduct=  0x1206
1212 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1214 NeedResponse=1
1216 Configuration=2
1219 ########################################################
1220 # ZTE K3565
1223 DefaultVendor=  0x19d2
1224 DefaultProduct= 0x2000
1226 TargetVendor=   0x19d2
1227 TargetProduct=  0x0063
1229 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
1230 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
1232 NeedResponse=1
1235 ########################################################
1236 # Motorola 802.11 bg WLAN (TER/GUSB3-E)
1238 # Contributor: Prashad Prashant
1240 DefaultVendor=  0x148f
1241 DefaultProduct= 0x2578
1243 TargetVendor=   0x148f
1244 TargetProduct=  0x9021
1246 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1248 NeedResponse=1
1251 ########################################################
1252 # Huawei E1612
1254 # Contributor: Genar Codina
1256 DefaultVendor=  0x12d1
1257 DefaultProduct= 0x1446
1259 TargetVendor=   0x12d1
1260 TargetProduct=  0x1406
1262 MessageContent="55534243123456780000000000000011060000000000000000000000000000"
1265 ########################################################
1266 # Huawei E1690
1267 # Huawei E1692
1268 # Huawei E1762
1270 # Contributor: Carolin Latze and others
1272 DefaultVendor=  0x12d1
1273 DefaultProduct= 0x1446
1275 TargetVendor=   0x12d1
1276 TargetProduct=  0x140c
1278 MessageContent="55534243123456780000000000000011060000000000000000000000000000"
1281 ########################################################
1282 # C-motech CHU-629S
1285 DefaultVendor=  0x16d8
1286 DefaultProduct= 0x700a
1288 TargetClass=0xff
1290 MessageContent="55534243123456782400000080000dfe524445564348473d4e444953000000"
1293 ########################################################
1294 # Sagem F@ST 9520-35-GLR
1296 # Contributor: Yaroslav Levandovskiy
1298 DefaultVendor=  0x1076
1299 DefaultProduct= 0x7f40
1301 TargetVendor=   0x1076
1302 TargetProduct=  0x7f00
1304 GCTMode=1
1307 ########################################################
1308 # Nokia CS-15
1310 # Contributor: Antti Turunen
1312 DefaultVendor=  0x0421
1313 DefaultProduct= 0x0610
1315 TargetVendor=   0x0421
1316 TargetProduct=  0x0612
1318 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1320 NeedResponse=1
1323 ########################################################
1324 # Huawei K3765
1326 # Contributor: Felix Schwarz
1328 DefaultVendor=  0x12d1
1329 DefaultProduct= 0x1520
1331 TargetVendor=   0x12d1
1332 TargetProduct=  0x1465
1334 MessageContent="55534243123456780000000000000011060000000000000000000000000000"
1337 ########################################################
1338 # Huawei K4505
1340 # Contributor: Nikolaos Koutsianas
1342 DefaultVendor=  0x12d1
1343 DefaultProduct= 0x1521
1345 TargetVendor=   0x12d1
1346 TargetProduct=  0x1464
1348 MessageContent="55534243123456780000000000000011060000000000000000000000000000"
1351 #########################################
1352 # Vodafone MD950 (Wisue Technology)
1354 # Contributor: Bob Williams
1356 DefaultVendor=  0x0471
1357 DefaultProduct= 0x1210
1359 # The report said that giving the target IDs prevented
1360 # the device from switching. Got to try it out ...
1362 #TargetVendor=   0x1dbc
1363 #TargetProduct=  0x0005
1365 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1367 NeedResponse=1
1370 ########################################################
1371 # Siptune LM-75 ("LinuxModem")
1373 # Contributor: Antti Turunen
1375 DefaultVendor=  0x05c6
1376 DefaultProduct= 0xf000
1378 TargetVendor=   0x05c6
1379 TargetProduct=  0x9000
1381 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1384 ########################################################
1385 # Zydas ZD1211RW WLAN USB, Sphairon HomeLink 1202 (Variant 1)
1387 # WLAN devices from Linux kernel
1389 DefaultVendor=  0x0ace
1390 DefaultProduct= 0x2011
1392 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1394 NeedResponse=1
1397 ########################################################
1398 # Zydas ZD1211RW WLAN USB, Sphairon HomeLink 1202 (Variant 2)
1400 # WLAN devices from Linux kernel
1402 DefaultVendor=  0x0ace
1403 DefaultProduct= 0x20ff
1405 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1407 NeedResponse=1
1410 ########################################################
1411 # Vertex Wireless 100 Series
1413 # Contributor: Reinis Danne
1415 DefaultVendor=  0x05c6
1416 DefaultProduct= 0x1000
1418 TargetVendor=   0x1fe7
1419 TargetProduct=  0x0100
1421 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1423 NeedResponse=1
1426 ########################################################
1427 # AVM Fritz!Wlan USB Stick N
1430 DefaultVendor=  0x057c
1431 DefaultProduct= 0x84ff
1433 TargetVendor=   0x057c
1434 TargetProduct=  0x8401
1436 MessageContent="5553424312345678000000000000061b000000ff0000000000000000000000"
1439 ########################################################
1440 # InfoCert Business Key (SmartCard/Reader emulation)
1442 # Contributor: Bicio
1444 DefaultVendor=  0x072f
1445 DefaultProduct= 0x100d
1447 TargetVendor=   0x072f
1448 TargetProduct=  0x90cc
1450 MessageContent="01b0000000000000000000000000000000000000000000000000000000000000"
1453 ########################################################
1454 # UTStarcom UM185E (distributor "Alltel")
1456 # Contributor: Jason Smith
1458 DefaultVendor=  0x106c
1459 DefaultProduct= 0x3b06
1461 TargetVendor=   0x106c
1462 TargetProduct=  0x3717
1464 MessageContent="555342431234567824000000800008ff020000000000000000000000000000
1467 ########################################################
1468 # ZTE AC581
1470 # Contributor: Alberto Maurizi
1472 DefaultVendor=  0x19d2
1473 DefaultProduct= 0x0026
1475 TargetVendor=   0x19d2
1476 TargetProduct=  0x0094
1478 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
1479 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
1481 NeedResponse=1
1484 ########################################################
1485 # Huawei U7510 / U7517
1487 # Contributor: Isaac Salgado
1489 DefaultVendor=  0x12d1
1490 DefaultProduct= 0x101e
1492 TargetClass=0xff
1494 MessageContent="55534243123456780600000080000601000000000000000000000000000000"
1497 ########################################################
1498 # Beceem BCSM250
1500 # Contributor: Alexander Gordeev
1502 DefaultVendor= 0x198f
1503 DefaultProduct=0xbccd
1505 TargetVendor=  0x198f
1506 TargetProduct= 0x0220
1508 MessageContent="555342431234567824000000800006bc626563240000000000000000000000"
1511 ########################################################
1512 # LG HDM-2100 (EVDO Rev.A USB modem)
1514 # Contributor: Jérôme Oufella
1516 DefaultVendor= 0x1004
1517 DefaultProduct=0x607f
1519 TargetVendor=  0x1004
1520 TargetProduct= 0x6114
1522 MessageContent="1201100102000040041014610000010200018006000100001200"
1525 ########################################################
1526 # Kyocera W06K CDMA modem
1528 # Contributor: Ying-Hung Lo
1530 DefaultVendor= 0x0482
1531 DefaultProduct=0x024d
1533 Configuration=2
1536 ########################################################
1537 # Digicom 8E4455
1539 # Contributor: Alberto Ciampini
1541 DefaultVendor= 0x1266
1542 DefaultProduct=0x1000
1544 TargetVendor=  0x1266
1545 TargetProduct= 0x1009
1547 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
1548 MessageContent2="5553424387654321000000000000061b000000020000000000000000000000"
1550 NeedResponse=1
1553 ########################################################
1554 # Sony Ericsson MD300
1556 # Contributor: Betavine Project
1558 DefaultVendor= 0x0fce
1559 DefaultProduct=0xd0cf
1561 TargetClass=0x02
1563 DetachStorageOnly=1
1564 Configuration=3
1567 ########################################################
1568 # Vodafone (ZTE) K3805-Z
1570 # Contributor: Betavine Project
1572 # Note:
1573 #   This device has multiple USB profiles. Depending upon how it is flipped
1574 #   from storage mode to modem mode determines its final PID and the packages
1575 #   shown on its ISO CD image.
1577 DefaultVendor= 0x19d2
1578 DefaultProduct=0x1001
1580 TargetVendor=  0x19d2
1581 TargetProduct= 0x1003
1583 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1585 NeedResponse=1
1588 ########################################################
1589 # Franklin Wireless U210
1591 # Contributor: Adam J. Porter
1593 DefaultVendor= 0x1fac
1594 DefaultProduct=0x0130
1596 TargetVendor=  0x1fac
1597 TargetProduct= 0x0131
1599 CheckSuccess=20
1601 MessageContent="555342431234567824000000800108df200000000000000000000000000000"
1604 ########################################################
1605 # Alcatel X220L, X215S
1607 # Contributor: John Watt
1609 DefaultVendor=  0x1bbb
1610 DefaultProduct= 0xf000
1612 TargetVendor=   0x1bbb
1613 TargetProduct=  0x0017
1615 MessageContent="55534243123456788000000080000606f50402527000000000000000000000"
1618 ########################################################
1619 # ZTE MF112
1621 # Contributors: Akos Ladanyi, John Talbut
1623 DefaultVendor=  0x19d2
1624 DefaultProduct= 0x0103
1626 TargetVendor=   0x19d2
1627 TargetProduct=  0x0031
1629 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1630 MessageContent2="55534243876543212000000080000c85010101180101010101000000000000"
1632 NeedResponse=1
1635 ########################################################
1636 # Olivetti Olicard 100 and others
1638 # Contributor: Nils Radtke
1640 DefaultVendor=  0x0b3c
1641 DefaultProduct= 0xc700
1643 TargetVendor=   0x0b3c
1644 TargetProductList="c000,c001,c002"
1646 MessageContent="5553424312345678000000000000061b000000030000000000000000000000"
1648 NeedResponse=1
1651 ########################################################
1652 # ZTE MF110 (Variant)
1654 # Contributor: uusrlnx
1656 DefaultVendor=  0x19d2
1657 DefaultProduct= 0x0083
1659 TargetVendor=   0x19d2
1660 TargetProduct=  0x0124
1662 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1664 NeedResponse=1
1667 ########################################################
1668 # ZTE MU351
1670 DefaultVendor=  0x19d2
1671 DefaultProduct= 0x0003
1673 TargetClass=0xff
1675 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1677 NeedResponse=1
1680 ########################################################
1681 # LG L-05A
1683 DefaultVendor=  0x1004
1684 DefaultProduct= 0x613a
1686 TargetVendor=   0x1004
1687 TargetProduct=  0x6124
1689 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1691 NeedResponse=1
1694 ########################################################
1695 # LG LUU-2100TI (aka AT&T USBConnect Turbo)
1697 # Contributor: Chris Jager
1699 DefaultVendor=  0x1004
1700 DefaultProduct= 0x613f
1702 TargetVendor=   0x1004
1703 TargetProduct=  0x6141
1705 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1707 NeedResponse=1
1710 ######################################################## 
1711 # LG KP500 Cookie Phone  - UNTESTED! Please report!
1713 # Contributor: Oliver Mattos
1715 DefaultVendor= 0x1004
1716 DefaultProduct=0x607f
1718 TargetVendor=  0x1004
1719 TargetProduct= 0x6000
1721 MessageContent="555342431234567803000000800006f1022000000000000000000000000000"
1722 MessageContent2="555342438765432103000000800006f1010100000000000000000000000000"
1724 NeedResponse=1
1727 ########################################################
1728 # Royaltek Q110 - UNCONFIRMED!
1730 DefaultVendor=  0x1266
1731 DefaultProduct= 0x1000
1733 TargetVendor=   0x1266
1734 TargetProduct=  0x1009
1736 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
1737 MessageContent2="5553424387654321000000000000061b000000020000000000000000000000"
1739 NeedResponse=1
1742 ########################################################
1743 # Rogers Rocket Stick (a Sony Ericsson device)
1745 DefaultVendor=  0x0fce
1746 DefaultProduct= 0xd103
1748 TargetClass=    0x02
1750 SonyMode=1
1753 ########################################################
1754 # BandRich BandLuxe C170, BandLuxe C270
1756 DefaultVendor= 0x1a8d
1757 DefaultProduct=0x1000
1759 TargetVendor=  0x1a8d
1760 TargetProduct= 0x1009
1762 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
1763 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
1764 ReleaseDelay=4000
1766 NeedResponse=1
1769 ########################################################
1770 # Vodafone (Huawei) K4605
1772 # Contributor: Betavine Project
1774 DefaultVendor= 0x12d1
1775 DefaultProduct=0x14c1
1777 TargetVendor=  0x12d1
1778 TargetProduct= 0x14c6
1780 CheckSuccess=20
1782 MessageContent="55534243123456780000000000000011060000000000000000000000000000"
1785 ########################################################
1786 # Huawei R201
1788 # Contributor: Betavine Project
1790 DefaultVendor= 0x12d1
1791 DefaultProduct=0x1523
1793 TargetVendor=  0x12d1
1794 TargetProduct= 0x1491
1796 CheckSuccess=20
1798 MessageContent="55534243123456780000000000000011060000000000000000000000000000"
1801 ########################################################
1802 # Atheros Wireless / Netgear WNDA3200
1804 # Contributor: Sujith Manoharan (Atheros)
1806 DefaultVendor= 0x0cf3
1807 DefaultProduct=0x20ff
1809 TargetVendor=  0x0cf3
1810 TargetProduct= 0x7010
1812 CheckSuccess=10
1813 NoDriverLoading=1
1815 MessageContent="5553424329000000000000000000061b000000020000000000000000000000"
1816 NeedResponse=1
1819 ########################################################
1820 # Onda MW833UP
1822 # Contributor: Riccardo Sepe aka zeroidle
1824 DefaultVendor= 0x1ee8
1825 DefaultProduct=0x0013
1827 TargetVendor=  0x1ee8
1828 TargetProduct= 0x0012
1830 CheckSuccess=20
1832 MessageContent="555342431234567800000000000010ff000000000000000000000000000000"
1833 ResponseNeeded=1
1836 ########################################################
1837 # Huawei U8110 / U8300 / Joy, Vodafone 845 (Android smartphone)
1839 # Contributor: David Erosa García
1841 DefaultVendor= 0x12d1
1842 DefaultProduct=0x1031
1844 TargetVendor=  0x12d1
1845 TargetProduct= 0x1035
1847 CheckSuccess=20 
1849 MessageContent="55534243123456780600000080010a11060000000000000000000000000000"
1851 # for Android SDK
1852 NoDriverLoading=1
1855 ########################################################
1856 # Nokia CS-10
1858 # Contributor: WacÅ‚aw Sierek
1860 DefaultVendor= 0x0421
1861 DefaultProduct=0x060c
1863 TargetVendor=  0x0421
1864 TargetProduct= 0x060e
1866 CheckSuccess=20
1868 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1871 ########################################################
1872 # ZTE WCDMA Stick from BNSL
1874 # Contributor: Anoop John
1876 DefaultVendor=  0x19d2
1877 DefaultProduct= 0x2000
1879 TargetVendor=   0x19d2
1880 TargetProduct=  0x0108
1882 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
1883 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
1885 NeedResponse=1
1888 ########################################################
1889 # BSNL Capitel
1891 DefaultVendor=  0x1c9e
1892 DefaultProduct= 0x9e00
1894 TargetClass=0xff
1896 MessageContent="55534243123456780000000000000606f50402527000000000000000000000"
1899 #######################################################
1900 # Samsung GT-B3730
1902 # Contributor: Per Ã˜yvind Karlsen
1904 DefaultVendor= 0x04e8
1905 DefaultProduct=0x689a
1907 TargetVendor=  0x04e8
1908 TargetProduct= 0x6889
1910 MessageContent="55534243785634120100000080000601000000000000000000000000000000"
1912 #######################################################
1913 # Kobil mIdentity 3G (1)
1915 # Contributor: Filip Aben
1917 DefaultVendor= 0x0d46
1918 DefaultProduct=0x45a1
1920 TargetVendor=  0x0d46
1921 TargetProduct= 0x45a9
1923 KobilMode=1
1926 #######################################################
1927 # Kobil mIdentity 3G (2)
1929 # Contributor: Filip Aben
1931 DefaultVendor= 0x0d46
1932 DefaultProduct=0x45a5
1934 TargetVendor=  0x0d46
1935 TargetProduct= 0x45ad
1937 KobilMode=1
1940 ########################################################
1941 # Onda MW833UP
1943 # Contributor: Enrico Mioso
1945 DefaultVendor= 0x1ee8
1946 DefaultProduct=0x0009
1948 TargetVendor=  0x1ee8
1949 TargetProduct= 0x000b
1951 MessageContent="555342431234567800000000000010ff000000000000000000000000000000"
1952 NeedResponse=1
1955 ########################################################
1956 # Olivetti Olicard 145
1958 # Contributor: Pierre-Andre Cornillon
1960 DefaultVendor= 0x0b3c
1961 DefaultProduct=0xf000
1963 TargetVendor=  0x0b3c
1964 TargetProduct= 0xc003
1966 MessageContent="5553424312345678c000000080010606f50402527000000000000000000000"
1967 NeedResponse=1
1970 #######################################################
1971 # Huawei EC168C (from Zantel)
1973 # Contributor: Ã…smund Hjulstad
1975 DefaultVendor= 0x12d1
1976 DefaultProduct=0x1446
1978 TargetVendor=  0x12d1
1979 TargetProduct= 0x1412
1981 MessageContent="55534243123456780000000000000011060000000000000000000000000000"
1984 #######################################################
1985 # Nokia CS-17
1987 # Contributor: Juho Frits
1989 DefaultVendor= 0x0421
1990 DefaultProduct=0x0622
1992 TargetVendor=  0x0421
1993 TargetProduct= 0x0623
1995 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
1998 #######################################################
1999 # Nokia CS-18
2001 # Contributor: Thomas Behan
2003 DefaultVendor= 0x0421
2004 DefaultProduct=0x0627
2006 TargetVendor=  0x0421
2007 TargetProduct= 0x0612
2009 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
2012 #######################################################
2013 # Qtronix EVDO 3G Modem (for TianYi)
2015 # Contributor: Alexey Charkov
2017 DefaultVendor= 0x05c7
2018 DefaultProduct=0x1000
2020 TargetVendor=  0x05c7
2021 TargetProduct=  0x6000
2023 MessageContent="5553424312345678c00000008000069f140000000000000000000000000000"
2026 #######################################################
2027 # GW D301 (Advinne AMC)
2030 DefaultVendor= 0x0fd1
2031 DefaultProduct=0x1000
2033 TargetClass=0xff
2035 Configuration=3
2038 #######################################################
2039 # LG AD600
2041 # Contributor: Shawn J. Goff
2043 DefaultVendor= 0x1004
2044 DefaultProduct=0x6190
2046 TargetVendor=  0x1004
2047 TargetProduct= 0x61a7
2049 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
2052 #######################################################
2053 # Pantech / UTStarcom UMW190 (Verizon)
2055 # Contributor: Noel J. Bergman, Gus Esquivel
2057 DefaultVendor= 0x106c
2058 DefaultProduct=0x3b05
2060 TargetVendor=  0x106c
2061 TargetProduct= 0x3716
2063 MessageContent="555342431234567824000000800008ff020000000000000000000000000000"
2066 #######################################################
2067 # AirPlus MCD-800
2070 DefaultVendor= 0x1edf
2071 DefaultProduct=0x6003
2073 TargetClass=0xff
2075 Configuration=3
2078 #######################################################
2079 # Linktop LW272/LW273 (BSNL Teracom)
2081 # Contributor: Amit Mendapara
2083 DefaultVendor= 0x230d
2084 DefaultProduct=0x0001
2086 TargetClass=0xff
2088 Configuration=3
2091 ########################################################
2092 # MediaTek Wimax USB Card
2095 DefaultVendor= 0x0e8d
2096 DefaultProduct=0x7109
2098 TargetVendor=  0x0e8d
2099 TargetProduct= 0x7118
2101 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
2102 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
2104 NoDriverLoading=1
2107 ########################################################
2108 # C-motech CHU-628S
2110 # Contributor: Jungwon Seo
2112 DefaultVendor= 0x16d8
2113 DefaultProduct=0x6281
2115 TargetClass=0xff
2117 MessageContent="555342431234567824000000800008ff524445564348470000000000000000"
2120 ######################################################## 
2121 # HSDPA USB modem from dealextreme 
2123 # Contributor: Andrew 'Necromant' Andrianov 
2125 DefaultVendor= 0x05c6
2126 DefaultProduct=0x2000
2128 TargetVendor=  0x05c6
2129 TargetProduct= 0x0015
2131 MessageContent="5553424368032c882400000080000612000000240000000000000000000000" 
2133 NeedResponse=1
2135 # This modem doesn't react fast - it pauses for some 30-40 seconds 
2136 CheckSuccess=40 
2139 ######################################################## 
2140 # Exiss Mobile E-190 series (made by C-motech)
2142 # Contributor: Tri Mulya Saputra 
2144 DefaultVendor=  0x8888
2145 DefaultProduct= 0x6500
2147 TargetVendor=   0x16d8
2148 TargetProduct=  0x6533
2150 MessageContent="5553424398e2c4812400000080000bff524445564348473d43440000000000"
2153 ######################################################## 
2154 # D-Link DWM-156 HSUPA 3.75G USB Modem 
2155 # F/W Ver. 1.05b01 upgr. at ftp://ftp.dlink.co.uk/dwm_3G/DWM-156/
2157 # Contributor: Fuego
2159 DefaultVendor= 0x07d1
2160 DefaultProduct=0xa800
2162 TargetVendor=  0x07d1
2163 TargetProduct= 0x3e02
2165 MessageContent="5553424312345678000000000000061b000000020000000000000000000000" 
2168 ########################################################
2169 # Franklin Wireless U210 (Variant)
2171 DefaultVendor= 0x1fac
2172 DefaultProduct=0x0032
2174 Configuration=2
2177 ####################################################### 
2178 # Haier CE 100 
2180 DefaultVendor= 0x201e
2181 DefaultProduct=0x2009
2183 TargetClass=0xff
2185 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
2186 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
2188 NeedResponse=1
2191 #######################################################
2192 # Huawei BM358 WiMAX
2194 DefaultVendor= 0x12d1
2195 DefaultProduct=0x380b
2197 TargetClass=0x02
2199 MessageContent="5553424312345678000000000000061e000000000000000000000000000000"
2200 MessageContent2="5553424312345679000000000000061b000000020000000000000000000000"
2202 NeedResponse=1
2205 ######################################################## 
2206 # Huawei E352
2208 # Contributor: Antonio Talarico
2210 DefaultVendor= 0x12d1
2211 DefaultProduct=0x1449
2213 TargetVendor=  0x12d1
2214 TargetProduct= 0x1444
2216 MessageContent="55534243123456780000000000000011062000000100000000000000000000"
2219 ######################################################## 
2220 # Huawei ET8282 
2222 # Contributor: Emfox Zhou
2224 DefaultVendor= 0x12d1
2225 DefaultProduct=0x1da1
2227 DefaultVendor= 0x12d1
2228 TargetProduct= 0x1d09
2230 HuaweiMode=1
2233 ######################################################## 
2234 # Huawei V725 Phone (aka Vodafone 725)
2236 DefaultVendor= 0x12d1 
2237 DefaultProduct=0x1009 
2239 TargetClass=0xff
2241 HuaweiMode=1
2244 ########################################################
2245 # Onda MW836UP-K
2247 DefaultVendor= 0x1ee8
2248 DefaultProduct=0x0040
2250 TargetVendor=  0x1ee8
2251 TargetProduct= 0x003e
2253 MessageContent="555342431234567800000000000010ff000000000000000000000000000000"
2255 NeedResponse=1
2258 ########################################################
2259 # ZTE MF637 (Variant for Orange France)
2261 # Contributor: David Vigier
2263 DefaultVendor= 0x19d2
2264 DefaultProduct=0x0110
2266 TargetVendor=  0x19d2
2267 TargetProduct= 0x0121
2269 MessageContent="5553424302000000000000000000061b000000020000000000000000000000"
2271 NeedResponse=1
2274 ########################################################
2275 # Prolink P2000 CDMA
2277 # Test string: uMa=SSE
2279 DefaultVendor= 0x05c6
2280 DefaultProduct=0x1000
2282 TargetVendor=  0x05c6
2283 TargetProduct= 0x6000
2285 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
2286 NeedResponse=1
2289 ######################################################## 
2290 # Vibe 3G Modem 
2292 # Contributor: Steven James Drinnan
2294 DefaultVendor= 0x1c9e
2295 DefaultProduct=0x6061
2297 TargetClass=0xff
2299 MessageContent="55534243123456780000000000000606f50402527000000000000000000000"
2302 ########################################################
2303 # Vodafone/ZTE K3806-Z
2305 DefaultVendor= 0x19d2
2306 DefaultProduct=0x0013
2308 TargetVendor=  0x19d2
2309 TargetProduct= 0x0015
2311 MessageContent="5553424312345678000000000000061b000000020000000000000000000000"
2313 NeedResponse=1