diff --git a/esp3d/src/include/esp3d_version.h b/esp3d/src/include/esp3d_version.h index 2004bba0..45696355 100644 --- a/esp3d/src/include/esp3d_version.h +++ b/esp3d/src/include/esp3d_version.h @@ -22,7 +22,7 @@ #define _VERSION_ESP3D_H // version and sources location -#define FW_VERSION "3.0.0" +#define FW_VERSION "3.0.1" #define REPOSITORY "https://github.com/luc-github/ESP3D/tree/3.0" #endif //_VERSION_ESP3D_H diff --git a/esp3d/src/modules/serial/serial_service_esp8266.cpp b/esp3d/src/modules/serial/serial_service_esp8266.cpp index 0e1cf6a2..7b6fa0e9 100644 --- a/esp3d/src/modules/serial/serial_service_esp8266.cpp +++ b/esp3d/src/modules/serial/serial_service_esp8266.cpp @@ -82,6 +82,7 @@ bool ESP3DSerialService::begin(uint8_t serialIndex) { if (_rxPin != -1) { Serials[_serialIndex]->pins((_txPin == -1) ? 1 : _txPin, _rxPin); } + _baudRate = br; } _started = true; esp3d_log("Serial %d for %d is started", _serialIndex, _id);