Fix typo that make ESP701 resume not working

This commit is contained in:
Luc 2022-07-23 12:29:07 +08:00
parent f511c37dd3
commit 8af8e8dfa7
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
#define _VERSION_ESP3D_H
//version and sources location
#define FW_VERSION "3.0.0.a202"
#define FW_VERSION "3.0.0.a203"
#define REPOSITORY "https://github.com/luc-github/ESP3D/tree/3.0"
#endif //_VERSION_ESP3D_H

View File

@ -440,7 +440,7 @@ bool GcodeHost::resume()
if (_step != HOST_PAUSE_STREAM) {
return false;
}
_step = HOST_PAUSE_STREAM;
_step = _nextStep;
return true;
}