USB Host WAN Dongle library

Fork of USBHostWANDongle_bleedingedge by Donatien Garnier

Files at this revision

API Documentation at this revision

Comitter:
nherriot
Date:
Wed Jul 25 11:13:50 2012 +0000
Parent:
4:d229ebfb85c4
Child:
6:075e36a3463e
Commit message:
Initial copy of door controller using bleeding edge voda lib

Changed in this revision

USB3GModule/WANDongleInitializer.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/USB3GModule/WANDongleInitializer.cpp	Wed Jul 11 21:24:32 2012 +0000
+++ b/USB3GModule/WANDongleInitializer.cpp	Wed Jul 25 11:13:50 2012 +0000
@@ -41,10 +41,19 @@
 }
 
 //Huawei K3770 (Vodafone)
+// Switching from mass storage device string is: "55 53 42 43 12 34 56 78 00 00 00 00 00 00 00 11 06 20 00 00 01 00 00 00 00 00 00 00 00 00 00"
 static uint8_t vodafone_k3770_switch_packet[] = {
     0x55, 0x53, 0x42, 0x43, 0x12, 0x34, 0x56, 0x78, 0, 0, 0, 0, 0, 0, 0, 0x11, 0x06, 0x20, 0, 0, 0x01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
 };
 
+// NVIDIA (ICERA) /ZTE K3772-Z (Vodafone)
+// Switching from mass storage device string is: "55 53 42 43 12 34 56 78 00 00 00 00 00 00 06 1b 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00"
+static uint8_t vodafone_k3772_z_switch_packet[] = {
+    0x55, 0x53, 0x42, 0x43, 0x12, 0x34, 0x56, 0x78, 0, 0, 0, 0, 0, 0, 0x06, 0x1b, 0, 0, 0, 0x20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
+};
+
+
+
 VodafoneK3770Initializer::VodafoneK3770Initializer(USBHost* pHost) : WANDongleInitializer(pHost)
 {