Small Testprogram to have WebAccess via Webserver to a 433Mhz tranmitter to control remotly some devices from remote, with TFTP, NTP and RMF. This could be a base to develop applications.

Dependencies:   ChaNFSSD TFTPServer RMFWeb

Dependents:   RMFWeb

Committer:
ED7418
Date:
Mon Jun 16 07:40:08 2014 +0000
Revision:
1:809b59c7a800
Parent:
0:51f1ef89ec7b
mbed-lib and other libs are a based on a project, published in a Elektor-book "ARM-microkontroller Part II".

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ED7418 0:51f1ef89ec7b 1 #include "UMTSStick.h"
ED7418 0:51f1ef89ec7b 2
ED7418 0:51f1ef89ec7b 3 const UMTSSwitchingInfo UMTSwitchingTable[UMTS_SWITCHING_COUNT] = {
ED7418 0:51f1ef89ec7b 4
ED7418 0:51f1ef89ec7b 5 /*
ED7418 0:51f1ef89ec7b 6 struct UMTSSwitchingInfo
ED7418 0:51f1ef89ec7b 7 {
ED7418 0:51f1ef89ec7b 8 uint16_t cdfsVid;
ED7418 0:51f1ef89ec7b 9 uint16_t cdfsPid;
ED7418 0:51f1ef89ec7b 10 uint16_t serialVid;
ED7418 0:51f1ef89ec7b 11 uint16_t serialPidList[16];
ED7418 0:51f1ef89ec7b 12 byte targetClass;
ED7418 0:51f1ef89ec7b 13 bool huaweiPacket;
ED7418 0:51f1ef89ec7b 14 byte cdfsPacket[31];
ED7418 0:51f1ef89ec7b 15 };
ED7418 0:51f1ef89ec7b 16 */
ED7418 0:51f1ef89ec7b 17
ED7418 0:51f1ef89ec7b 18 //Huawei E220, E230, E270, E870
ED7418 0:51f1ef89ec7b 19 { 0x12d1, 0x1003, 0, {0}, 0xFF, true, {0} },
ED7418 0:51f1ef89ec7b 20
ED7418 0:51f1ef89ec7b 21 //Huawei E1550, E270+
ED7418 0:51f1ef89ec7b 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 } }
ED7418 0:51f1ef89ec7b 23
ED7418 0:51f1ef89ec7b 24 };