Parser for AT commands and similar protocols

Dependencies:   BufferedSerial

Fork of ATParser by NetworkSocketAPI

Files at this revision

API Documentation at this revision

Comitter:
Raffaello
Date:
Sat May 27 13:07:44 2017 +0000
Parent:
16:8f98e042b9b4
Commit message:
Added code guard

Changed in this revision

ATParser.h Show annotated file Show diff for this revision Revisions of this file
--- a/ATParser.h	Mon May 22 18:05:51 2017 +0000
+++ b/ATParser.h	Sat May 27 13:07:44 2017 +0000
@@ -18,6 +18,9 @@
  *
  */
 
+#ifndef ATPARSER_H
+#define ATPARSER_H
+
 #include "mbed.h"
 #include <cstdarg>
 #include "BufferedSerial.h"
@@ -213,3 +216,4 @@
     void flush();
 };
 
+#endif  /* ATPARSER_H */