More MKS UI sprintf
This commit is contained in:
parent
21518fbd4e
commit
ed477abbd5
@ -478,7 +478,7 @@ char wait_ip_back_flag = 0;
|
|||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int write_index;
|
int write_index;
|
||||||
uint8_t saveFileName[30];
|
char saveFileName[30];
|
||||||
uint8_t fileTransfer;
|
uint8_t fileTransfer;
|
||||||
uint32_t fileLen;
|
uint32_t fileLen;
|
||||||
uint32_t tick_begin;
|
uint32_t tick_begin;
|
||||||
@ -593,7 +593,7 @@ uint8_t Explore_Disk(char *path , uint8_t recu_level) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void wifi_gcode_exec(uint8_t *cmd_line) {
|
static void wifi_gcode_exec(uint8_t *cmd_line) {
|
||||||
int8_t tempBuf[100] = { 0 };
|
char tempBuf[100] = { 0 };
|
||||||
uint8_t *tmpStr = 0;
|
uint8_t *tmpStr = 0;
|
||||||
int cmd_value;
|
int cmd_value;
|
||||||
volatile int print_rate;
|
volatile int print_rate;
|
||||||
@ -631,7 +631,7 @@ static void wifi_gcode_exec(uint8_t *cmd_line) {
|
|||||||
while (tmpStr[index] == ' ') index++;
|
while (tmpStr[index] == ' ') index++;
|
||||||
|
|
||||||
if (gCfgItems.wifi_type == ESP_WIFI) {
|
if (gCfgItems.wifi_type == ESP_WIFI) {
|
||||||
char *path = (char *)tempBuf;
|
char *path = tempBuf;
|
||||||
|
|
||||||
if (strlen((char *)&tmpStr[index]) < 80) {
|
if (strlen((char *)&tmpStr[index]) < 80) {
|
||||||
send_to_wifi((uint8_t *)"Begin file list\r\n", strlen("Begin file list\r\n"));
|
send_to_wifi((uint8_t *)"Begin file list\r\n", strlen("Begin file list\r\n"));
|
||||||
@ -828,8 +828,8 @@ static void wifi_gcode_exec(uint8_t *cmd_line) {
|
|||||||
if ((uiCfg.print_state == WORKING) || (uiCfg.print_state == PAUSED)|| (uiCfg.print_state == REPRINTING)) {
|
if ((uiCfg.print_state == WORKING) || (uiCfg.print_state == PAUSED)|| (uiCfg.print_state == REPRINTING)) {
|
||||||
print_rate = uiCfg.totalSend;
|
print_rate = uiCfg.totalSend;
|
||||||
ZERO(tempBuf);
|
ZERO(tempBuf);
|
||||||
sprintf_P((char *)tempBuf, PSTR("M27 %d\r\n"), print_rate);
|
sprintf_P(tempBuf, PSTR("M27 %d\r\n"), print_rate);
|
||||||
send_to_wifi((uint8_t *)tempBuf, strlen((char *)tempBuf));
|
send_to_wifi((uint8_t *)tempBuf, strlen(tempBuf));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -841,15 +841,15 @@ static void wifi_gcode_exec(uint8_t *cmd_line) {
|
|||||||
while (tmpStr[index] == ' ') index++;
|
while (tmpStr[index] == ' ') index++;
|
||||||
|
|
||||||
if (strstr_P((char *)&tmpStr[index], PSTR(".g")) || strstr_P((char *)&tmpStr[index], PSTR(".G"))) {
|
if (strstr_P((char *)&tmpStr[index], PSTR(".g")) || strstr_P((char *)&tmpStr[index], PSTR(".G"))) {
|
||||||
strcpy((char *)file_writer.saveFileName, (char *)&tmpStr[index]);
|
strcpy(file_writer.saveFileName, (char *)&tmpStr[index]);
|
||||||
|
|
||||||
if (gCfgItems.fileSysType == FILE_SYS_SD) {
|
if (gCfgItems.fileSysType == FILE_SYS_SD) {
|
||||||
ZERO(tempBuf);
|
ZERO(tempBuf);
|
||||||
sprintf_P((char *)tempBuf, PSTR("%s"), file_writer.saveFileName);
|
sprintf_P(tempBuf, PSTR("%s"), file_writer.saveFileName);
|
||||||
}
|
}
|
||||||
else if (gCfgItems.fileSysType == FILE_SYS_USB) {
|
else if (gCfgItems.fileSysType == FILE_SYS_USB) {
|
||||||
ZERO(tempBuf);
|
ZERO(tempBuf);
|
||||||
sprintf_P((char *)tempBuf, PSTR("%s"), (char *)file_writer.saveFileName);
|
sprintf_P(tempBuf, PSTR("%s"), file_writer.saveFileName);
|
||||||
}
|
}
|
||||||
mount_file_sys(gCfgItems.fileSysType);
|
mount_file_sys(gCfgItems.fileSysType);
|
||||||
|
|
||||||
@ -858,11 +858,11 @@ static void wifi_gcode_exec(uint8_t *cmd_line) {
|
|||||||
card.openFileWrite(cur_name);
|
card.openFileWrite(cur_name);
|
||||||
if (card.isFileOpen()) {
|
if (card.isFileOpen()) {
|
||||||
ZERO(file_writer.saveFileName);
|
ZERO(file_writer.saveFileName);
|
||||||
strcpy((char *)file_writer.saveFileName, (char *)&tmpStr[index]);
|
strcpy(file_writer.saveFileName, (char *)&tmpStr[index]);
|
||||||
ZERO(tempBuf);
|
ZERO(tempBuf);
|
||||||
sprintf_P((char *)tempBuf, PSTR("Writing to file: %s\r\n"), (char *)file_writer.saveFileName);
|
sprintf_P(tempBuf, PSTR("Writing to file: %s\r\n"), file_writer.saveFileName);
|
||||||
wifi_ret_ack();
|
wifi_ret_ack();
|
||||||
send_to_wifi((uint8_t *)tempBuf, strlen((char *)tempBuf));
|
send_to_wifi((uint8_t *)tempBuf, strlen(tempBuf));
|
||||||
wifi_link_state = WIFI_WAIT_TRANS_START;
|
wifi_link_state = WIFI_WAIT_TRANS_START;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -882,7 +882,7 @@ static void wifi_gcode_exec(uint8_t *cmd_line) {
|
|||||||
|
|
||||||
SEND_OK_TO_WIFI;
|
SEND_OK_TO_WIFI;
|
||||||
|
|
||||||
char *outBuf = (char *)tempBuf;
|
char *outBuf = tempBuf;
|
||||||
char tbuf[34];
|
char tbuf[34];
|
||||||
|
|
||||||
sprintf_P(tbuf, PSTR("%d /%d"), (int)thermalManager.degHotend(0), (int)thermalManager.degTargetHotend(0));
|
sprintf_P(tbuf, PSTR("%d /%d"), (int)thermalManager.degHotend(0), (int)thermalManager.degTargetHotend(0));
|
||||||
@ -917,7 +917,7 @@ static void wifi_gcode_exec(uint8_t *cmd_line) {
|
|||||||
strcat_P(outBuf, PSTR(" @:0 B@:0\r\n"));
|
strcat_P(outBuf, PSTR(" @:0 B@:0\r\n"));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
sprintf_P((char *)tempBuf, PSTR("T:%d /%d B:%d /%d T0:%d /%d T1:%d /%d @:0 B@:0\r\n"),
|
sprintf_P(tempBuf, PSTR("T:%d /%d B:%d /%d T0:%d /%d T1:%d /%d @:0 B@:0\r\n"),
|
||||||
thermalManager.degHotend(0), thermalManager.degTargetHotend(0),
|
thermalManager.degHotend(0), thermalManager.degTargetHotend(0),
|
||||||
#if HAS_HEATED_BED
|
#if HAS_HEATED_BED
|
||||||
thermalManager.degBed(), thermalManager.degTargetBed(),
|
thermalManager.degBed(), thermalManager.degTargetBed(),
|
||||||
@ -933,16 +933,16 @@ static void wifi_gcode_exec(uint8_t *cmd_line) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
send_to_wifi((uint8_t *)tempBuf, strlen((char *)tempBuf));
|
send_to_wifi((uint8_t *)tempBuf, strlen(tempBuf));
|
||||||
queue.enqueue_one_P(PSTR("M105"));
|
queue.enqueue_one_P(PSTR("M105"));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 992:
|
case 992:
|
||||||
if ((uiCfg.print_state == WORKING) || (uiCfg.print_state == PAUSED)) {
|
if ((uiCfg.print_state == WORKING) || (uiCfg.print_state == PAUSED)) {
|
||||||
ZERO(tempBuf);
|
ZERO(tempBuf);
|
||||||
sprintf_P((char *)tempBuf, PSTR("M992 %d%d:%d%d:%d%d\r\n"), print_time.hours/10, print_time.hours%10, print_time.minutes/10, print_time.minutes%10, print_time.seconds/10, print_time.seconds%10);
|
sprintf_P(tempBuf, PSTR("M992 %d%d:%d%d:%d%d\r\n"), print_time.hours/10, print_time.hours%10, print_time.minutes/10, print_time.minutes%10, print_time.seconds/10, print_time.seconds%10);
|
||||||
wifi_ret_ack();
|
wifi_ret_ack();
|
||||||
send_to_wifi((uint8_t *)tempBuf, strlen((char *)tempBuf));
|
send_to_wifi((uint8_t *)tempBuf, strlen(tempBuf));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -950,9 +950,9 @@ static void wifi_gcode_exec(uint8_t *cmd_line) {
|
|||||||
if ((uiCfg.print_state == WORKING) || (uiCfg.print_state == PAUSED)) {
|
if ((uiCfg.print_state == WORKING) || (uiCfg.print_state == PAUSED)) {
|
||||||
ZERO(tempBuf);
|
ZERO(tempBuf);
|
||||||
if (strlen((char *)list_file.file_name[sel_id]) > (100 - 1)) return;
|
if (strlen((char *)list_file.file_name[sel_id]) > (100 - 1)) return;
|
||||||
sprintf_P((char *)tempBuf, PSTR("M994 %s;%d\n"), list_file.file_name[sel_id], (int)gCfgItems.curFilesize);
|
sprintf_P(tempBuf, PSTR("M994 %s;%d\n"), list_file.file_name[sel_id], (int)gCfgItems.curFilesize);
|
||||||
wifi_ret_ack();
|
wifi_ret_ack();
|
||||||
send_to_wifi((uint8_t *)tempBuf, strlen((char *)tempBuf));
|
send_to_wifi((uint8_t *)tempBuf, strlen(tempBuf));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -1279,7 +1279,7 @@ static void file_first_msg_handle(uint8_t * msg, uint16_t msgLen) {
|
|||||||
|
|
||||||
ZERO(public_buf);
|
ZERO(public_buf);
|
||||||
|
|
||||||
if (strlen((const char *)file_writer.saveFileName) > sizeof(saveFilePath))
|
if (strlen(file_writer.saveFileName) > sizeof(saveFilePath))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
ZERO(saveFilePath);
|
ZERO(saveFilePath);
|
||||||
@ -1303,9 +1303,9 @@ static void file_first_msg_handle(uint8_t * msg, uint16_t msgLen) {
|
|||||||
|
|
||||||
#if ENABLED(SDSUPPORT)
|
#if ENABLED(SDSUPPORT)
|
||||||
|
|
||||||
uint8_t dosName[FILENAME_LENGTH];
|
char dosName[FILENAME_LENGTH];
|
||||||
|
|
||||||
if (!longName2DosName((const char *)file_writer.saveFileName,dosName)) {
|
if (!longName2DosName(file_writer.saveFileName, dosName)) {
|
||||||
clear_cur_ui();
|
clear_cur_ui();
|
||||||
upload_result = 2;
|
upload_result = 2;
|
||||||
wifiTransError.flag = 1;
|
wifiTransError.flag = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user