SMS Scheduler that will automatically send and receive text messages using the Enfora 1308 GSM Modem. Please note that it uses a modified NetServices library and to set the baud rate for the GSM Modem to 19.2K.
NetServices/drv/umtsstick/UMTSStickData.cpp@1:5a7cce9994a3, 2011-10-13 (annotated)
- Committer:
- mafischl
- Date:
- Thu Oct 13 18:01:31 2011 +0000
- Revision:
- 1:5a7cce9994a3
- Parent:
- 0:d9266031f832
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mafischl | 0:d9266031f832 | 1 | #include "UMTSStick.h" |
mafischl | 0:d9266031f832 | 2 | |
mafischl | 0:d9266031f832 | 3 | const UMTSSwitchingInfo UMTSwitchingTable[UMTS_SWITCHING_COUNT] = { |
mafischl | 0:d9266031f832 | 4 | |
mafischl | 0:d9266031f832 | 5 | /* |
mafischl | 0:d9266031f832 | 6 | struct UMTSSwitchingInfo |
mafischl | 0:d9266031f832 | 7 | { |
mafischl | 0:d9266031f832 | 8 | uint16_t cdfsVid; |
mafischl | 0:d9266031f832 | 9 | uint16_t cdfsPid; |
mafischl | 0:d9266031f832 | 10 | uint16_t serialVid; |
mafischl | 0:d9266031f832 | 11 | uint16_t serialPidList[16]; |
mafischl | 0:d9266031f832 | 12 | byte targetClass; |
mafischl | 0:d9266031f832 | 13 | bool huaweiPacket; |
mafischl | 0:d9266031f832 | 14 | byte cdfsPacket[31]; |
mafischl | 0:d9266031f832 | 15 | }; |
mafischl | 0:d9266031f832 | 16 | */ |
mafischl | 0:d9266031f832 | 17 | |
mafischl | 0:d9266031f832 | 18 | //Huawei E220, E230, E270, E870 |
mafischl | 0:d9266031f832 | 19 | { 0x12d1, 0x1003, 0, {0}, 0xFF, true, {0} }, |
mafischl | 0:d9266031f832 | 20 | |
mafischl | 0:d9266031f832 | 21 | //Huawei E1550, E270+ |
mafischl | 0:d9266031f832 | 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 } } |
mafischl | 0:d9266031f832 | 23 | |
mafischl | 0:d9266031f832 | 24 | }; |