Skip to content

Commit b64161f

Browse files
committed
Fix Baudrate displayed as 0 instead of correct baudrate in [ESP420]
Bump version to 3.0.1
1 parent 4fe0c31 commit b64161f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

esp3d/src/include/esp3d_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#define _VERSION_ESP3D_H
2323

2424
// version and sources location
25-
#define FW_VERSION "3.0.0"
25+
#define FW_VERSION "3.0.1"
2626
#define REPOSITORY "https://github.com/luc-github/ESP3D/tree/3.0"
2727

2828
#endif //_VERSION_ESP3D_H

esp3d/src/modules/serial/serial_service_esp8266.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ bool ESP3DSerialService::begin(uint8_t serialIndex) {
8282
if (_rxPin != -1) {
8383
Serials[_serialIndex]->pins((_txPin == -1) ? 1 : _txPin, _rxPin);
8484
}
85+
_baudRate = br;
8586
}
8687
_started = true;
8788
esp3d_log("Serial %d for %d is started", _serialIndex, _id);

0 commit comments

Comments
 (0)