mirror of
				https://github.com/KevinMidboe/TinyGSM.git
				synced 2025-10-29 18:00:18 +00:00 
			
		
		
		
	Moved begin above init, reset historic buffer sizes
This commit is contained in:
		| @@ -16,6 +16,10 @@ | ||||
| //#define TINY_GSM_DEBUG Serial | ||||
| //#define TINY_GSM_USE_HEX | ||||
|  | ||||
| #if !defined(TINY_GSM_RX_BUFFER) | ||||
|   #define TINY_GSM_RX_BUFFER 64 | ||||
| #endif | ||||
|  | ||||
| #define TINY_GSM_MUX_COUNT 6 | ||||
|  | ||||
| #include <TinyGsmCommon.h> | ||||
| @@ -156,6 +160,10 @@ public: | ||||
|    * Basic functions | ||||
|    */ | ||||
|  | ||||
|   bool begin(const char* pin = NULL) { | ||||
|     return init(pin); | ||||
|   } | ||||
|  | ||||
|   bool init(const char* pin = NULL) { | ||||
|     DBG(GF("### TinyGSM Version:"), TINYGSM_VERSION); | ||||
|     if (!testAT()) { | ||||
| @@ -172,10 +180,6 @@ public: | ||||
|     return true; | ||||
|   } | ||||
|  | ||||
|   bool begin(const char* pin = NULL) { | ||||
|     return init(pin); | ||||
|   } | ||||
|  | ||||
|   String getModemName() { | ||||
|     #if defined(TINY_GSM_MODEM_MC60) | ||||
|       return "Quectel MC60"; | ||||
| @@ -315,6 +319,7 @@ TINY_GSM_MODEM_WAIT_FOR_NETWORK() | ||||
|   /* | ||||
|    * GPRS functions | ||||
|    */ | ||||
|  | ||||
|   bool gprsConnect(const char* apn, const char* user = NULL, const char* pwd = NULL) { | ||||
|     gprsDisconnect(); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user