Browse Source

write_command changes input

vanilla_fb_2.0.x
Scott Lahteine 3 years ago
parent
commit
e3116eed2e
  1. 8
      Marlin/src/sd/cardreader.cpp
  2. 2
      Marlin/src/sd/cardreader.h

8
Marlin/src/sd/cardreader.cpp

@ -722,10 +722,10 @@ void CardReader::report_status() {
SERIAL_ECHOLNPGM(STR_SD_NOT_PRINTING);
}
void CardReader::write_command(const char * const buf) {
char *begin = buf;
char *npos = nullptr;
char *end = buf + strlen(buf) - 1;
void CardReader::write_command(char * const buf) {
char *begin = buf,
*npos = nullptr,
*end = buf + strlen(buf) - 1;
file.writeError = false;
if ((npos = strchr(buf, 'N'))) {

2
Marlin/src/sd/cardreader.h

@ -92,7 +92,7 @@ public:
// SD Card Logging
static void openLogFile(const char * const path);
static void write_command(const char * const buf);
static void write_command(char * const buf);
#if DISABLED(NO_SD_AUTOSTART) // Auto-Start auto#.g file handling
static uint8_t autofile_index; // Next auto#.g index to run, plus one. Ignored by autofile_check when zero.

Loading…
Cancel
Save