Library for the Adafruit FONA. This is a port of the original Arduino library available at: https://github.com/adafruit/Adafruit_FONA_Library . - Modified by Marc PLOUHINEC 27/06/2015 for use in mbed - Modified by lionel VOIRIN 05/08/2018 for use Adafruit FONA 3

Dependents:   Adafruit_FONA_3G_Library_Test

Revision:
7:e60a2ee53aa0
Parent:
6:8fdb30dc3108
Child:
8:d54fbb976688
--- a/Adafruit_FONA.cpp	Thu Sep 06 20:17:02 2018 +0000
+++ b/Adafruit_FONA.cpp	Thu Oct 04 19:04:26 2018 +0000
@@ -1272,7 +1272,8 @@
 
 bool Adafruit_FONA_3G::TCPsend(char *packet)
 {
-    mySerial.printf("%s\r\n", packet);
+    mySerial.printf("%s", packet);
+    //mySerial.printf("%s\r\n", packet);
     readline();
     return true;
 }