Sample project to connect to AT&T M2X from the STM32 Nucleo + MTSAS Cellular SocketModem shield
Dependencies: M2XStreamClient jsonlite mbed
Fork of MTSAS_Cellular_Connect_M2X_Example_F411 by
main.cpp@9:0ed53023033b, 2014-08-07 (annotated)
- Committer:
- Vanger
- Date:
- Thu Aug 07 20:31:02 2014 +0000
- Revision:
- 9:0ed53023033b
- Parent:
- 8:95c226a1dca7
- Child:
- 10:2e6637cca9d7
Spelling errors, comment wording, and added check for failed radio initialization
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Vanger | 0:47bc9ce390cc | 1 | #include "mbed.h" |
Vanger | 0:47bc9ce390cc | 2 | #include "mtsas.h" |
Vanger | 0:47bc9ce390cc | 3 | |
Vanger | 0:47bc9ce390cc | 4 | int main(){ |
Vanger | 0:47bc9ce390cc | 5 | //Modify to match your apn if you are using an HSPA radio with a SIM card |
Vanger | 4:8b02a6b67f4d | 6 | const char APN[] = ""; |
Vanger | 4:8b02a6b67f4d | 7 | |
Vanger | 9:0ed53023033b | 8 | //Sets the log level to INFO, higher log levels produce more log output. |
Vanger | 9:0ed53023033b | 9 | //Possible levels: NONE, FATAL, ERROR, WARNING, INFO, DEBUG, TRACE |
Vanger | 4:8b02a6b67f4d | 10 | MTSLog::setLogLevel(MTSLog::INFO_LEVEL); |
Vanger | 0:47bc9ce390cc | 11 | |
Vanger | 0:47bc9ce390cc | 12 | /** STMicro Nucelo F401RE |
Vanger | 0:47bc9ce390cc | 13 | * The supported jumper configurations of the MTSAS do not line up with |
Vanger | 0:47bc9ce390cc | 14 | * the pin mapping of the Nucleo F401RE. Therefore, the MTSAS serial TX |
Vanger | 0:47bc9ce390cc | 15 | * pin (JP8 Pin 2) must be manually jumped to Serial1 RX (Shield pin D2) |
Vanger | 0:47bc9ce390cc | 16 | * and the MTSAS serial RX pin (JP9 Pin 2) pin must be manually jumped to |
Vanger | 0:47bc9ce390cc | 17 | * Serial1 TX (Shield pin D8). |
Vanger | 0:47bc9ce390cc | 18 | * Uncomment the following line to use the STMicro Nuceleo F401RE |
Vanger | 0:47bc9ce390cc | 19 | */ |
Vanger | 0:47bc9ce390cc | 20 | MTSSerialFlowControl* io = new MTSSerialFlowControl(D8, D2, D3, D6); |
Vanger | 0:47bc9ce390cc | 21 | |
Vanger | 0:47bc9ce390cc | 22 | /** Freescale KL46Z |
Vanger | 0:47bc9ce390cc | 23 | * To configure the pins for the Freescale KL46Z board, use configuration B |
Vanger | 9:0ed53023033b | 24 | * Uncomment the following line to use the Freescale KL46Z board |
Vanger | 0:47bc9ce390cc | 25 | */ |
Vanger | 0:47bc9ce390cc | 26 | //MTSSerialFlowControl* io = new MTSSerialFlowControl(D2, D9, D3, D6); |
Vanger | 0:47bc9ce390cc | 27 | |
Vanger | 9:0ed53023033b | 28 | /** Freescale K64F |
Vanger | 0:47bc9ce390cc | 29 | * To configure the pins for the Freescale KL46Z board, use configuration A |
Vanger | 3:f22ad66e049e | 30 | * for the SocketModem. |
Vanger | 0:47bc9ce390cc | 31 | * Uncomment te following line to use the Freescale KL46F board |
Vanger | 0:47bc9ce390cc | 32 | */ |
Vanger | 0:47bc9ce390cc | 33 | //MTSSerialFlowControl* io = new MTSSerialFlowControl(D1, D0, D3, D6); |
Vanger | 0:47bc9ce390cc | 34 | |
Vanger | 9:0ed53023033b | 35 | //Sets the baud rate for communicating with the radio |
Vanger | 1:4c54ec0a3a20 | 36 | io->baud(115200); |
Vanger | 0:47bc9ce390cc | 37 | |
Vanger | 8:95c226a1dca7 | 38 | //Create radio object |
Vanger | 0:47bc9ce390cc | 39 | Cellular* radio = CellularFactory::create(io); |
Vanger | 8:95c226a1dca7 | 40 | radio->configureSignals(D4,D7,RESET); |
Vanger | 8:95c226a1dca7 | 41 | Transport::setTransport(radio); |
Vanger | 8:95c226a1dca7 | 42 | |
Vanger | 9:0ed53023033b | 43 | if (! radio) { |
Vanger | 9:0ed53023033b | 44 | logFatal("Failed to initialize radio"); |
Vanger | 9:0ed53023033b | 45 | return 1; |
Vanger | 9:0ed53023033b | 46 | } |
Vanger | 9:0ed53023033b | 47 | |
Vanger | 8:95c226a1dca7 | 48 | //Set radio APN |
Vanger | 1:4c54ec0a3a20 | 49 | for (int i = 0; i < 10; i++) { |
Vanger | 1:4c54ec0a3a20 | 50 | if (i >= 10) { |
mfiore | 5:46e66c649006 | 51 | logError("Failed to set APN to %s", APN); |
Vanger | 1:4c54ec0a3a20 | 52 | } |
Vanger | 1:4c54ec0a3a20 | 53 | if (radio->setApn(APN) == MTS_SUCCESS) { |
mfiore | 5:46e66c649006 | 54 | logInfo("Successfully set APN to %s", APN); |
Vanger | 1:4c54ec0a3a20 | 55 | break; |
Vanger | 1:4c54ec0a3a20 | 56 | } else { |
Vanger | 1:4c54ec0a3a20 | 57 | wait(1); |
Vanger | 1:4c54ec0a3a20 | 58 | } |
Vanger | 1:4c54ec0a3a20 | 59 | } |
Vanger | 0:47bc9ce390cc | 60 | |
Vanger | 0:47bc9ce390cc | 61 | //Establish PPP link |
Vanger | 1:4c54ec0a3a20 | 62 | for (int i = 0; i < 10; i++) { |
Vanger | 1:4c54ec0a3a20 | 63 | if (i >= 10) { |
mfiore | 5:46e66c649006 | 64 | logError("Failed to establish PPP link"); |
Vanger | 1:4c54ec0a3a20 | 65 | } |
Vanger | 1:4c54ec0a3a20 | 66 | if (radio->connect() == true) { |
Vanger | 3:f22ad66e049e | 67 | logInfo("Successfully established PPP link"); |
Vanger | 1:4c54ec0a3a20 | 68 | break; |
Vanger | 1:4c54ec0a3a20 | 69 | } else { |
Vanger | 1:4c54ec0a3a20 | 70 | wait(1); |
Vanger | 1:4c54ec0a3a20 | 71 | } |
Vanger | 1:4c54ec0a3a20 | 72 | } |
Vanger | 0:47bc9ce390cc | 73 | |
Vanger | 1:4c54ec0a3a20 | 74 | //Ping google.com |
Vanger | 1:4c54ec0a3a20 | 75 | for (int i = 0; i < 10; i++) { |
Vanger | 1:4c54ec0a3a20 | 76 | if (i >= 10) { |
mfiore | 5:46e66c649006 | 77 | logError("Failed to ping www.google.com"); |
Vanger | 1:4c54ec0a3a20 | 78 | } |
Vanger | 3:f22ad66e049e | 79 | if (radio->ping("www.google.com") == true) { |
Vanger | 4:8b02a6b67f4d | 80 | logInfo("Successfully pinged www.google.com"); |
Vanger | 1:4c54ec0a3a20 | 81 | break; |
Vanger | 1:4c54ec0a3a20 | 82 | } else { |
Vanger | 1:4c54ec0a3a20 | 83 | wait(1); |
Vanger | 1:4c54ec0a3a20 | 84 | } |
Vanger | 1:4c54ec0a3a20 | 85 | } |
Vanger | 0:47bc9ce390cc | 86 | |
Vanger | 0:47bc9ce390cc | 87 | //Disconnect ppp link |
Vanger | 0:47bc9ce390cc | 88 | radio->disconnect(); |
Vanger | 0:47bc9ce390cc | 89 | |
Vanger | 3:f22ad66e049e | 90 | logInfo("End of example code"); |
Vanger | 0:47bc9ce390cc | 91 | return 0; |
Vanger | 8:95c226a1dca7 | 92 | } |