Changed baud rate from 9600 to 115200
This commit is contained in:
parent
6182ee5a59
commit
27385ccab4
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user