|
@@ -429,7 +429,7 @@ void enquecommand(const char *cmd)
|
429
|
429
|
//this is dangerous if a mixing of serial and this happens
|
430
|
430
|
strcpy(&(cmdbuffer[bufindw][0]),cmd);
|
431
|
431
|
SERIAL_ECHO_START;
|
432
|
|
- SERIAL_ECHOPGM("enqueing \"");
|
|
432
|
+ SERIAL_ECHOPGM(MSG_Enqueing);
|
433
|
433
|
SERIAL_ECHO(cmdbuffer[bufindw]);
|
434
|
434
|
SERIAL_ECHOLNPGM("\"");
|
435
|
435
|
bufindw= (bufindw + 1)%BUFSIZE;
|
|
@@ -444,7 +444,7 @@ void enquecommand_P(const char *cmd)
|
444
|
444
|
//this is dangerous if a mixing of serial and this happens
|
445
|
445
|
strcpy_P(&(cmdbuffer[bufindw][0]),cmd);
|
446
|
446
|
SERIAL_ECHO_START;
|
447
|
|
- SERIAL_ECHOPGM("enqueing \"");
|
|
447
|
+ SERIAL_ECHOPGM(MSG_Enqueing);
|
448
|
448
|
SERIAL_ECHO(cmdbuffer[bufindw]);
|
449
|
449
|
SERIAL_ECHOLNPGM("\"");
|
450
|
450
|
bufindw= (bufindw + 1)%BUFSIZE;
|