Library for Bert van Dam's book "ARM MICROCONTROLLERS" For all chapters with internet.

Dependencies:   mbed

Committer:
ICTFBI
Date:
Fri Oct 16 14:28:26 2015 +0000
Revision:
0:4edb816d21e1
Pre-update 16-10-15

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ICTFBI 0:4edb816d21e1 1 #include "UMTSStick.h"
ICTFBI 0:4edb816d21e1 2
ICTFBI 0:4edb816d21e1 3 const UMTSSwitchingInfo UMTSwitchingTable[UMTS_SWITCHING_COUNT] = {
ICTFBI 0:4edb816d21e1 4
ICTFBI 0:4edb816d21e1 5 /*
ICTFBI 0:4edb816d21e1 6 struct UMTSSwitchingInfo
ICTFBI 0:4edb816d21e1 7 {
ICTFBI 0:4edb816d21e1 8 uint16_t cdfsVid;
ICTFBI 0:4edb816d21e1 9 uint16_t cdfsPid;
ICTFBI 0:4edb816d21e1 10 uint16_t serialVid;
ICTFBI 0:4edb816d21e1 11 uint16_t serialPidList[16];
ICTFBI 0:4edb816d21e1 12 byte targetClass;
ICTFBI 0:4edb816d21e1 13 bool huaweiPacket;
ICTFBI 0:4edb816d21e1 14 byte cdfsPacket[31];
ICTFBI 0:4edb816d21e1 15 };
ICTFBI 0:4edb816d21e1 16 */
ICTFBI 0:4edb816d21e1 17
ICTFBI 0:4edb816d21e1 18 //Huawei E220, E230, E270, E870
ICTFBI 0:4edb816d21e1 19 { 0x12d1, 0x1003, 0, {0}, 0xFF, true, {0} },
ICTFBI 0:4edb816d21e1 20
ICTFBI 0:4edb816d21e1 21 //Huawei E1550, E270+
ICTFBI 0:4edb816d21e1 22 { 0x12d1, 0x1446, 0x12d1, {0x1001, 0x1406, 0x140c, 0x14ac/*, 0x1003*/}, 0, false, { 0x55, 0x53, 0x42, 0x43, 0x12, 0x34, 0x56, 0x78, 0, 0, 0, 0, 0, 0, 0, 0x11, 0x06, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }
ICTFBI 0:4edb816d21e1 23
ICTFBI 0:4edb816d21e1 24 };