Auto-detect baud rate

This commit is contained in:
Volodymyr Shymanskyy
2016-12-07 16:03:10 +02:00
parent 9031ebd1a5
commit 3412bedb2a

View File

@@ -1,47 +1,77 @@
/************************************************************** /**************************************************************
* *
* To run this tool you need StreamDebugger library: * This script tries to auto-detect the baud rate
* https://github.com/vshymanskyy/StreamDebugger * and allows direct AT commands access
* or from http://librarymanager/all#StreamDebugger
* *
* TinyGSM Getting Started guide: * TinyGSM Getting Started guide:
* http://tiny.cc/tiny-gsm-readme * http://tiny.cc/tiny-gsm-readme
* *
**************************************************************/ **************************************************************/
#include <TinyGsmClient.h> // Set serial for debug console (to the Serial Monitor, speed 115200)
#include <StreamDebugger.h> #define SerialMonitor Serial
char apn[] = "YourAPN";
char user[] = "";
char pass[] = "";
// Set serial for AT commands (to the module)
// Use Hardware Serial on Mega, Leonardo, Micro // Use Hardware Serial on Mega, Leonardo, Micro
#define GsmSerial Serial1 #define SerialAT Serial1
// or Software Serial on Uno, Nano // or Software Serial on Uno, Nano
//#include <SoftwareSerial.h> //#include <SoftwareSerialMonitor.h>
//SoftwareSerial GsmSerial(2, 3); // RX, TX //SoftwareSerial SerialAT(2, 3); // RX, TX
StreamDebugger DebugSerial(GsmSerial, Serial); #include <TinyGsmClient.h>
TinyGsmClient gsm(DebugSerial); TinyGsmClient gsm(SerialAT);
void setup() { void setup() {
// Set console baud rate // Set console baud rate
Serial.begin(115200); SerialMonitor.begin(115200);
delay(10); delay(5000);
// Set GSM module baud rate
GsmSerial.begin(115200);
delay(3000);
gsm.networkConnect(apn, user, pass);
// Access AT commands from Serial
DebugSerial.directAccess();
} }
void loop() { void loop() {
// Detect module baud rate
uint32_t rate = 0;
uint32_t rates[] = { 115200, 9600, 57600, 19200, 74400, 74880 };
SerialMonitor.println("Autodetecting baud rate");
for (unsigned i = 0; i < sizeof(rates)/sizeof(rates[0]); i++) {
SerialMonitor.print(String("Trying baud rate ") + rates[i] + "... ");
SerialAT.begin(rates[i]);
delay(10);
if (gsm.autoBaud(3000)) {
rate = rates[i];
SerialMonitor.println(F("OK"));
break;
} else {
SerialMonitor.println(F("fail"));
}
}
if (!rate) {
SerialMonitor.println(F("***********************************************************"));
SerialMonitor.println(F(" Module does not respond!"));
SerialMonitor.println(F(" Check your Serial wiring"));
SerialMonitor.println(F(" Check the module is correctly powered and turned on"));
SerialMonitor.println(F("***********************************************************"));
delay(30000L);
return;
}
// Access AT commands from Serial Monitor
SerialMonitor.println(F("***********************************************************"));
SerialMonitor.println(F(" You can now send AT commands"));
SerialMonitor.println(F(" Enter \"AT\" (without quotes), and you should see \"OK\""));
SerialMonitor.println(F(" If it doesn't work, select \"Both NL & CR\" in Serial Monitor"));
SerialMonitor.println(F("***********************************************************"));
while(true) {
if (SerialAT.available()) {
SerialMonitor.write(SerialAT.read());
}
if (SerialMonitor.available()) {
SerialAT.write(SerialMonitor.read());
}
delay(0);
}
} }