Skip to content

Commit cc2eac1

Browse files
committed
Try M29 without check sum first
1 parent 205fa15 commit cc2eac1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

esp3d/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*/
2020

2121
//version and sources location
22-
#define FW_VERSION "2.1.1.b5"
22+
#define FW_VERSION "2.1.1.b6"
2323
#define REPOSITORY "https://github.com/luc-github/ESP3D"
2424

2525
//Customize ESP3D ////////////////////////////////////////////////////////////////////////

esp3d/syncwebserver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,10 +1230,10 @@ void SDFile_serial_upload()
12301230
if (CONFIG::GetFirmwareTarget() == SMOOTHIEWARE)resetcmd = "N0 M110";
12311231
lineNb=1;
12321232
//close any ongoing upload and get current line number
1233-
if(!sendLine2Serial (command,1, &lineNb)){
1233+
if(!sendLine2Serial (command,-1, &lineNb)){
12341234
//it can failed for repetier
12351235
if ( ( CONFIG::GetFirmwareTarget() == REPETIER4DV) || (CONFIG::GetFirmwareTarget() == REPETIER) ) {
1236-
if(!sendLine2Serial (command,-1, NULL)){
1236+
if(!sendLine2Serial (command,1, NULL)){
12371237
log_esp3d("Upload start failed");
12381238
web_interface->_upload_status= UPLOAD_STATUS_FAILED;
12391239
pushError(ESP_ERROR_START_UPLOAD, "Upload rejected");

0 commit comments

Comments
 (0)