ATParser for EMW3162 wifi module
Revision 1:47dd607c7707, committed 2016-11-02
- Comitter:
- Maggie17
- Date:
- Wed Nov 02 05:28:49 2016 +0000
- Parent:
- 0:1b9f0bcf0b2b
- Commit message:
- first release
Changed in this revision
| ATParser.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/ATParser.h Wed Nov 02 03:38:46 2016 +0000
+++ b/ATParser.h Wed Nov 02 05:28:49 2016 +0000
@@ -72,7 +72,7 @@
* @param timeout timeout of the connection
* @param delimiter string of characters to use as line delimiters
*/
- ATParser(BufferedSerial &serial, const char *delimiter = "#\n", int buffer_size = 256, int timeout = 8000, bool debug = false) :
+ ATParser(BufferedSerial &serial, const char *delimiter = "#\n", int buffer_size = 256, int timeout = 8000, bool debug = true) :
_serial(&serial),
_buffer_size(buffer_size) {
_buffer = new char[buffer_size];