From 27385ccab44ef0a4d98f291531bc6663de6ac06d Mon Sep 17 00:00:00 2001 From: anschrammh Date: Wed, 8 May 2019 10:56:14 +0200 Subject: [PATCH] Changed baud rate from 9600 to 115200 --- src/app/SAB.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/SAB.cpp b/src/app/SAB.cpp index 80800e0..78280f7 100644 --- a/src/app/SAB.cpp +++ b/src/app/SAB.cpp @@ -16,7 +16,7 @@ _error(0) //We set the gpio up initGPIO(); //Serial.begin(9600); - Serial.begin(9600, SERIAL_8N1, SERIAL_TX_ONLY); + Serial.begin(115200, SERIAL_8N1, SERIAL_TX_ONLY); delay(200); //We initialize the pins for the I2C communication @@ -46,7 +46,7 @@ _error(0) //We set the gpio up initGPIO(); //Serial.begin(9600); - Serial.begin(9600, SERIAL_8N1, SERIAL_TX_ONLY); + Serial.begin(115200, SERIAL_8N1, SERIAL_TX_ONLY); delay(200); //We initialize the pins for the I2C communication Wire.begin(_pinConfig.getI2C_sda(), _pinConfig.getI2C_scl());