Parser for AT commands and similar protocols
Fork of ATParser by
Revision 17:f395d107f15e, committed 2017-05-27
- 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 |
diff -r 8f98e042b9b4 -r f395d107f15e ATParser.h --- 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 */