Cellular library for MTS Socket Modem Arduino Shield devices from Multi-Tech Systems

Dependents:   mtsas mtsas mtsas mtsas

Revision:
18:fa0d8120f81f
Parent:
17:dee902f7d00e
Child:
20:7cc2f55fb16b
diff -r dee902f7d00e -r fa0d8120f81f Test/TestSMS.h
--- a/Test/TestSMS.h	Thu Jun 05 17:29:32 2014 +0000
+++ b/Test/TestSMS.h	Mon Jun 16 13:50:28 2014 +0000
@@ -33,14 +33,14 @@
     MTSLog::setLogLevel(MTSLog::TRACE_LEVEL);
     
     Test::start("Setup");
-    io = new MTSSerialFlowControl(PTD3, PTD2, PTA12, PTC8);
+    io = new MTSSerialFlowControl(D8, D2, D3, D6);
     io->baud(115200);
     radio = CellularFactory::create(io);
     if (! radio) {
         logError("radio is NULL");
         Test::assertTrue(false);
     }
-    radio->configureSignals(PTA4, PTC9, PTA20);
+    radio->configureSignals(D4, D7, RESET);
     
     for (int i = 0; i < 10; i++) {
         if (i >= 10) {