89 lines
2.8 KiB
C++
89 lines
2.8 KiB
C++
/**
|
|
* Marlin 3D Printer Firmware
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
*
|
|
* Based on Sprinter and grbl.
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
#include "../gcode.h"
|
|
#include "../../sd/cardreader.h"
|
|
#include "../../lcd/dwin/e3v2/dwin.h"
|
|
#include "../../sd/cardreader.h"
|
|
|
|
/**
|
|
* Marlin\src\sd\cardreader.h
|
|
* Ender-3S_ONE\Marlin\src\gcode\stats\M72.cpp
|
|
* M72: Open a file
|
|
*
|
|
* The path is relative to the root directory
|
|
*/
|
|
void GcodeSuite::M72()
|
|
{
|
|
// Simplify3D includes the size, so zero out all spaces (#7227)
|
|
for (char *fn = parser.string_arg; *fn; ++fn)
|
|
{
|
|
if (*fn == ' ')
|
|
{
|
|
*fn = '\0';
|
|
}
|
|
}
|
|
SERIAL_ECHOLNPAIR("Rec_parser.string_arg:", parser.string_arg, ".\r\n");
|
|
#if ENABLED(DWIN_CREALITY_LCD)
|
|
int fileselect = 0;
|
|
for(int i = 0;i < 20;i ++)
|
|
{
|
|
// clean print file
|
|
// rtscheck.RTS_SndData(0, PRINT_FILE_TEXT_VP + i);
|
|
}
|
|
char *cloudfilename = parser.string_arg;
|
|
int cloudnamelen = strlen(parser.string_arg);
|
|
uint16_t fileCnt = card.countFilesInWorkDir();
|
|
SERIAL_ECHOLNPAIR(" \r\n sdcard_fileCnt=: ", fileCnt);
|
|
// Check whether the current file is the same as the SD card file one by one
|
|
for(fileselect = 0;fileselect < CardRecbuf.Filesum;fileselect++)
|
|
{
|
|
// To prevent duplicate file names on the card surface,
|
|
if(!strncmp(CardRecbuf.Cardshowfilename[fileselect], cloudfilename , cloudnamelen))
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
int j = 1;
|
|
while((strncmp(&cloudfilename[j], ".gcode", 6) && strncmp(&cloudfilename[j], ".GCODE", 6)) && ((j ++) < cloudnamelen));
|
|
|
|
if (j >= TEXTBYTELEN)
|
|
{
|
|
strncpy(&parser.string_arg[TEXTBYTELEN - 3], "..", 2);
|
|
parser.string_arg[TEXTBYTELEN - 1] = '\0';
|
|
j = TEXTBYTELEN - 1;
|
|
}
|
|
// card.filename[FILENAME_LENGTH]=cloudfilename;
|
|
// strncpy(CardRecbuf.Cardshowfilename[fileselect], parser.string_arg, j);
|
|
strncpy(card.filename, parser.string_arg, j);
|
|
// rtscheck.RTS_SndData(CardRecbuf.Cardshowfilename[fileselect], PRINT_FILE_TEXT_VP);
|
|
#endif
|
|
|
|
TERN_(LCD_SET_PROGRESS_MANUALLY, ui.set_progress(0));
|
|
}
|
|
|
|
#endif // SDSUPPORT
|