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

Dependents:   mtsas mtsas thermostat_fan_demo--fan mtsas ... more

NOTE: MTS-Utils has moved to GitHub. This version will not be updated. For updates, go to the GitHub version.

Files at this revision

API Documentation at this revision

Comitter:
Mike Fiore
Date:
Tue May 20 16:12:41 2014 -0500
Parent:
5:48d0ea2fe332
Child:
7:a3c626c0651e
Commit message:
include mbed.h in cpp files

Changed in this revision

MTSCircularBuffer.cpp Show annotated file Show diff for this revision Revisions of this file
MTSCircularBuffer.h Show annotated file Show diff for this revision Revisions of this file
MTSLog.cpp Show annotated file Show diff for this revision Revisions of this file
MTSLog.h Show annotated file Show diff for this revision Revisions of this file
MTSText.h Show annotated file Show diff for this revision Revisions of this file
--- a/MTSCircularBuffer.cpp	Mon May 19 14:39:33 2014 -0500
+++ b/MTSCircularBuffer.cpp	Tue May 20 16:12:41 2014 -0500
@@ -1,3 +1,4 @@
+#include "mbed.h"
 #include "MTSCircularBuffer.h"
 
 using namespace mts;
--- a/MTSCircularBuffer.h	Mon May 19 14:39:33 2014 -0500
+++ b/MTSCircularBuffer.h	Tue May 20 16:12:41 2014 -0500
@@ -1,7 +1,6 @@
 #ifndef MTSCIRCULARBUFFER_H
 #define MTSCIRCULARBUFFER_H
 
-#include "mbed.h"
 #include "Utils.h"
 
 namespace mts
--- a/MTSLog.cpp	Mon May 19 14:39:33 2014 -0500
+++ b/MTSLog.cpp	Tue May 20 16:12:41 2014 -0500
@@ -1,3 +1,4 @@
+#include "mbed.h"
 #include <stdarg.h>
 #include "MTSLog.h"
 
--- a/MTSLog.h	Mon May 19 14:39:33 2014 -0500
+++ b/MTSLog.h	Tue May 20 16:12:41 2014 -0500
@@ -1,8 +1,6 @@
 #ifndef MTSLOG_H
 #define MTSLOG_H
 
-#include "mbed.h"
-
 #ifdef MTS_DEBUG
 #define logFatal(format, ...) \
     MTSLog::printMessage(MTSLog::FATAL_LEVEL, "%s:%s:%s| [%s] " format "\r\n", __FILE__, __func__, __LINE__, MTSLog::FATAL_LABEL, ##__VA_ARGS__)
--- a/MTSText.h	Mon May 19 14:39:33 2014 -0500
+++ b/MTSText.h	Tue May 20 16:12:41 2014 -0500
@@ -1,7 +1,6 @@
 #ifndef MTSTEXT_H
 #define MTSTEXT_H
 
-#include "mbed.h"
 #include <string>
 #include <vector>
 #include <stddef.h>