From d88cc407dde5f2d64308ab59dace7e6c06143d89 Mon Sep 17 00:00:00 2001 From: zhujisheng Date: Tue, 9 Jul 2019 20:11:30 +0800 Subject: [PATCH] Update SIM7000.h --- 参考文档(21-30)/LocReport/SIM7000.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/参考文档(21-30)/LocReport/SIM7000.h b/参考文档(21-30)/LocReport/SIM7000.h index 68c704c..70e02b3 100644 --- a/参考文档(21-30)/LocReport/SIM7000.h +++ b/参考文档(21-30)/LocReport/SIM7000.h @@ -10,9 +10,9 @@ class SIM7000 { public: bool begin(Stream &port); - bool check_send_cmd(const char* cmd, const char* resp, unsigned int timeout = DEFAULT_TIMEOUT, unsigned int chartimeout = DEFAULT_INTERCHAR_TIMEOUT); void sendCmd(const char* cmd); int readBuffer(char *buffer, int count, unsigned int timeout = DEFAULT_TIMEOUT, unsigned int chartimeout = DEFAULT_INTERCHAR_TIMEOUT); + bool check_send_cmd(const char* cmd, const char* resp, unsigned int timeout = DEFAULT_TIMEOUT, unsigned int chartimeout = DEFAULT_INTERCHAR_TIMEOUT); private: SoftwareSerial* mySerial; };