From 195c351b1b2387686f38d16c1ced77d869e13142 Mon Sep 17 00:00:00 2001 From: ladyada Date: Tue, 4 Dec 2012 11:20:10 -0500 Subject: [PATCH] added a little delay --- Adafruit_GPS.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Adafruit_GPS.cpp b/Adafruit_GPS.cpp index 8e5e7ed..65b8b1e 100644 --- a/Adafruit_GPS.cpp +++ b/Adafruit_GPS.cpp @@ -243,6 +243,8 @@ void Adafruit_GPS::begin(uint16_t baud) { if(gpsSwSerial) gpsSwSerial->begin(baud); else gpsHwSerial->begin(baud); + + delay(10); } void Adafruit_GPS::sendCommand(char *str) { @@ -368,4 +370,4 @@ boolean Adafruit_GPS::wakeup(void) { else { return false; // Returns false if not in standby mode, nothing to wakeup } -} \ No newline at end of file +}