2015-10-16 11:04:50 +02:00
|
|
|
/*
|
|
|
|
This file is part of Repetier-Firmware.
|
|
|
|
|
|
|
|
Repetier-Firmware 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.
|
|
|
|
|
|
|
|
Repetier-Firmware 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 Repetier-Firmware. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
This firmware is a nearly complete rewrite of the sprinter firmware
|
|
|
|
by kliment (https://github.com/kliment/Sprinter)
|
|
|
|
which based on Tonokip RepRap firmware rewrite based off of Hydra-mmm firmware.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Repetier.h"
|
|
|
|
|
|
|
|
#if SDSUPPORT
|
|
|
|
|
|
|
|
char tempLongFilename[LONG_FILENAME_LENGTH + 1];
|
|
|
|
char fullName[LONG_FILENAME_LENGTH * SD_MAX_FOLDER_DEPTH + SD_MAX_FOLDER_DEPTH + 1];
|
|
|
|
|
|
|
|
SDCard sd;
|
|
|
|
|
|
|
|
SDCard::SDCard()
|
|
|
|
{
|
|
|
|
sdmode = 0;
|
|
|
|
sdactive = false;
|
|
|
|
savetosd = false;
|
|
|
|
Printer::setAutomount(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::automount()
|
|
|
|
{
|
|
|
|
#if SDCARDDETECT > -1
|
|
|
|
if(READ(SDCARDDETECT) != SDCARDDETECTINVERTED)
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
if(sdactive || sdmode == 100) // Card removed
|
2015-10-16 11:04:50 +02:00
|
|
|
{
|
|
|
|
Com::printFLN(PSTR("SD card removed"));
|
|
|
|
#if UI_DISPLAY_TYPE != NO_DISPLAY
|
|
|
|
uid.executeAction(UI_ACTION_TOP_MENU, true);
|
|
|
|
#endif
|
|
|
|
unmount();
|
2016-01-15 20:42:10 +01:00
|
|
|
UI_STATUS_UPD_F(Com::translatedF(UI_TEXT_SD_REMOVED_ID));
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
if(!sdactive && sdmode != 100)
|
2015-10-16 11:04:50 +02:00
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
UI_STATUS_UPD_F(Com::translatedF(UI_TEXT_SD_INSERTED_ID));
|
|
|
|
mount();
|
|
|
|
if(sdmode != 100) // send message only if we have success
|
|
|
|
Com::printFLN(PSTR("SD card inserted")); // Not translatable or host will not understand signal
|
2015-10-16 11:04:50 +02:00
|
|
|
#if UI_DISPLAY_TYPE != NO_DISPLAY
|
2016-01-15 20:42:10 +01:00
|
|
|
if(sdactive && !uid.isWizardActive()) { // Wizards have priority
|
2015-10-16 11:04:50 +02:00
|
|
|
Printer::setAutomount(true);
|
|
|
|
uid.executeAction(UI_ACTION_SD_PRINT + UI_ACTION_TOPMENU, true);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::initsd()
|
|
|
|
{
|
|
|
|
sdactive = false;
|
|
|
|
#if SDSS > -1
|
|
|
|
#if SDCARDDETECT > -1
|
|
|
|
if(READ(SDCARDDETECT) != SDCARDDETECTINVERTED)
|
|
|
|
return;
|
|
|
|
#endif
|
2016-07-02 18:11:43 +02:00
|
|
|
HAL::pingWatchdog();
|
2016-01-15 20:42:10 +01:00
|
|
|
HAL::delayMilliseconds(50); // wait for stabilization of contacts, bootup ...
|
2016-07-02 18:11:43 +02:00
|
|
|
fat.begin(SDSS, SPI_FULL_SPEED); // dummy init of SD_CARD
|
|
|
|
HAL::delayMilliseconds(50); // wait for init end
|
|
|
|
HAL::pingWatchdog();
|
2015-10-16 11:04:50 +02:00
|
|
|
/*if(dir[0].isOpen())
|
|
|
|
dir[0].close();*/
|
|
|
|
if(!fat.begin(SDSS, SPI_FULL_SPEED))
|
|
|
|
{
|
|
|
|
Com::printFLN(Com::tSDInitFail);
|
2016-01-15 20:42:10 +01:00
|
|
|
sdmode = 100; // prevent automount loop!
|
2015-10-16 11:04:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
sdactive = true;
|
|
|
|
Printer::setMenuMode(MENU_MODE_SD_MOUNTED, true);
|
2016-07-02 18:11:43 +02:00
|
|
|
HAL::pingWatchdog();
|
2015-10-16 11:04:50 +02:00
|
|
|
|
|
|
|
fat.chdir();
|
|
|
|
if(selectFile("init.g", true))
|
|
|
|
{
|
|
|
|
startPrint();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::mount()
|
|
|
|
{
|
|
|
|
sdmode = 0;
|
|
|
|
initsd();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::unmount()
|
|
|
|
{
|
|
|
|
sdmode = 0;
|
|
|
|
sdactive = false;
|
|
|
|
savetosd = false;
|
|
|
|
Printer::setAutomount(false);
|
|
|
|
Printer::setMenuMode(MENU_MODE_SD_MOUNTED + MENU_MODE_SD_PAUSED + MENU_MODE_SD_PRINTING, false);
|
|
|
|
#if UI_DISPLAY_TYPE != NO_DISPLAY && SDSUPPORT
|
|
|
|
uid.cwd[0] = '/';
|
|
|
|
uid.cwd[1] = 0;
|
|
|
|
uid.folderLevel = 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::startPrint()
|
|
|
|
{
|
|
|
|
if(!sdactive) return;
|
|
|
|
sdmode = 1;
|
|
|
|
Printer::setMenuMode(MENU_MODE_SD_PRINTING, true);
|
|
|
|
Printer::setMenuMode(MENU_MODE_SD_PAUSED, false);
|
|
|
|
}
|
|
|
|
void SDCard::pausePrint(bool intern)
|
|
|
|
{
|
|
|
|
if(!sd.sdactive) return;
|
|
|
|
sdmode = 2; // finish running line
|
|
|
|
Printer::setMenuMode(MENU_MODE_SD_PAUSED, true);
|
|
|
|
if(intern) {
|
|
|
|
Commands::waitUntilEndOfAllBuffers();
|
|
|
|
sdmode = 0;
|
|
|
|
Printer::MemoryPosition();
|
|
|
|
Printer::moveToReal(IGNORE_COORDINATE, IGNORE_COORDINATE, IGNORE_COORDINATE,
|
|
|
|
Printer::memoryE - RETRACT_ON_PAUSE,
|
|
|
|
Printer::maxFeedrate[E_AXIS] / 2);
|
|
|
|
#if DRIVE_SYSTEM == DELTA
|
|
|
|
Printer::moveToReal(0, 0.9 * EEPROM::deltaMaxRadius(), IGNORE_COORDINATE, IGNORE_COORDINATE, Printer::maxFeedrate[X_AXIS]);
|
|
|
|
#else
|
|
|
|
Printer::moveToReal(Printer::xMin, Printer::yMin + Printer::yLength, IGNORE_COORDINATE, IGNORE_COORDINATE, Printer::maxFeedrate[X_AXIS]);
|
|
|
|
#endif
|
|
|
|
Printer::lastCmdPos[X_AXIS] = Printer::currentPosition[X_AXIS];
|
|
|
|
Printer::lastCmdPos[Y_AXIS] = Printer::currentPosition[Y_AXIS];
|
|
|
|
Printer::lastCmdPos[Z_AXIS] = Printer::currentPosition[Z_AXIS];
|
|
|
|
GCode::executeFString(PSTR(PAUSE_START_COMMANDS));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::continuePrint(bool intern)
|
|
|
|
{
|
|
|
|
if(!sd.sdactive) return;
|
|
|
|
if(intern) {
|
|
|
|
GCode::executeFString(PSTR(PAUSE_END_COMMANDS));
|
|
|
|
Printer::GoToMemoryPosition(true, true, false, false, Printer::maxFeedrate[X_AXIS]);
|
|
|
|
Printer::GoToMemoryPosition(false, false, true, false, Printer::maxFeedrate[Z_AXIS] / 2.0f);
|
|
|
|
Printer::GoToMemoryPosition(false, false, false, true, Printer::maxFeedrate[E_AXIS] / 2.0f);
|
|
|
|
}
|
|
|
|
Printer::setMenuMode(MENU_MODE_SD_PAUSED, false);
|
|
|
|
sdmode = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::stopPrint()
|
|
|
|
{
|
|
|
|
if(!sd.sdactive) return;
|
|
|
|
if(sdmode)
|
|
|
|
Com::printFLN(PSTR("SD print stopped by user."));
|
|
|
|
sdmode = 0;
|
|
|
|
Printer::setMenuMode(MENU_MODE_SD_PRINTING,false);
|
|
|
|
Printer::setMenuMode(MENU_MODE_SD_PAUSED,false);
|
|
|
|
GCode::executeFString(PSTR(SD_RUN_ON_STOP));
|
|
|
|
if(SD_STOP_HEATER_AND_MOTORS_ON_STOP) {
|
|
|
|
Commands::waitUntilEndOfAllMoves();
|
2016-07-02 18:11:43 +02:00
|
|
|
Printer::kill(false);
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::writeCommand(GCode *code)
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
unsigned int sum1 = 0, sum2 = 0; // for fletcher-16 checksum
|
2015-10-16 11:04:50 +02:00
|
|
|
uint8_t buf[100];
|
2016-01-15 20:42:10 +01:00
|
|
|
uint8_t p = 2;
|
2015-10-16 11:04:50 +02:00
|
|
|
file.writeError = false;
|
2016-01-15 20:42:10 +01:00
|
|
|
uint16_t params = 128 | (code->params & ~1);
|
|
|
|
memcopy2(buf,¶ms);
|
|
|
|
//*(int*)buf = params;
|
2015-10-16 11:04:50 +02:00
|
|
|
if(code->isV2()) // Read G,M as 16 bit value
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
memcopy2(&buf[p],&code->params2);
|
|
|
|
//*(int*)&buf[p] = code->params2;
|
|
|
|
p += 2;
|
2015-10-16 11:04:50 +02:00
|
|
|
if(code->hasString())
|
|
|
|
buf[p++] = strlen(code->text);
|
|
|
|
if(code->hasM())
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
memcopy2(&buf[p],&code->M);
|
|
|
|
//*(int*)&buf[p] = code->M;
|
|
|
|
p += 2;
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
if(code->hasG())
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
memcopy2(&buf[p],&code->G);
|
|
|
|
//*(int*)&buf[p]= code->G;
|
|
|
|
p += 2;
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(code->hasM())
|
|
|
|
{
|
|
|
|
buf[p++] = (uint8_t)code->M;
|
|
|
|
}
|
|
|
|
if(code->hasG())
|
|
|
|
{
|
|
|
|
buf[p++] = (uint8_t)code->G;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(code->hasX())
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
memcopy4(&buf[p],&code->X);
|
|
|
|
//*(float*)&buf[p] = code->X;
|
|
|
|
p += 4;
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
if(code->hasY())
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
memcopy4(&buf[p],&code->Y);
|
|
|
|
//*(float*)&buf[p] = code->Y;
|
|
|
|
p += 4;
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
if(code->hasZ())
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
memcopy4(&buf[p],&code->Z);
|
|
|
|
//*(float*)&buf[p] = code->Z;
|
|
|
|
p += 4;
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
if(code->hasE())
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
memcopy4(&buf[p],&code->E);
|
|
|
|
//*(float*)&buf[p] = code->E;
|
|
|
|
p += 4;
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
if(code->hasF())
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
memcopy4(&buf[p],&code->F);
|
|
|
|
//*(float*)&buf[p] = code->F;
|
|
|
|
p += 4;
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
if(code->hasT())
|
|
|
|
{
|
|
|
|
buf[p++] = code->T;
|
|
|
|
}
|
|
|
|
if(code->hasS())
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
memcopy4(&buf[p],&code->S);
|
|
|
|
//*(int32_t*)&buf[p] = code->S;
|
|
|
|
p += 4;
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
if(code->hasP())
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
memcopy4(&buf[p],&code->P);
|
|
|
|
//*(int32_t*)&buf[p] = code->P;
|
|
|
|
p += 4;
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
if(code->hasI())
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
memcopy4(&buf[p],&code->I);
|
|
|
|
//*(float*)&buf[p] = code->I;
|
|
|
|
p += 4;
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
if(code->hasJ())
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
memcopy4(&buf[p],&code->J);
|
|
|
|
//*(float*)&buf[p] = code->J;
|
|
|
|
p += 4;
|
|
|
|
}
|
|
|
|
if(code->hasR())
|
|
|
|
{
|
|
|
|
memcopy4(&buf[p],&code->R);
|
|
|
|
//*(float*)&buf[p] = code->R;
|
|
|
|
p += 4;
|
|
|
|
}
|
|
|
|
if(code->hasD())
|
|
|
|
{
|
|
|
|
memcopy4(&buf[p],&code->D);
|
|
|
|
//*(float*)&buf[p] = code->D;
|
|
|
|
p += 4;
|
|
|
|
}
|
|
|
|
if(code->hasC())
|
|
|
|
{
|
|
|
|
memcopy4(&buf[p],&code->C);
|
|
|
|
//*(float*)&buf[p] = code->C;
|
|
|
|
p += 4;
|
|
|
|
}
|
|
|
|
if(code->hasH())
|
|
|
|
{
|
|
|
|
memcopy4(&buf[p],&code->H);
|
|
|
|
//*(float*)&buf[p] = code->H;
|
|
|
|
p += 4;
|
|
|
|
}
|
|
|
|
if(code->hasA())
|
|
|
|
{
|
|
|
|
memcopy4(&buf[p],&code->A);
|
|
|
|
//*(float*)&buf[p] = code->A;
|
|
|
|
p += 4;
|
|
|
|
}
|
|
|
|
if(code->hasB())
|
|
|
|
{
|
|
|
|
memcopy4(&buf[p],&code->B);
|
|
|
|
//*(float*)&buf[p] = code->B;
|
|
|
|
p += 4;
|
|
|
|
}
|
|
|
|
if(code->hasK())
|
|
|
|
{
|
|
|
|
memcopy4(&buf[p],&code->K);
|
|
|
|
//*(float*)&buf[p] = code->K;
|
|
|
|
p += 4;
|
|
|
|
}
|
|
|
|
if(code->hasL())
|
|
|
|
{
|
|
|
|
memcopy4(&buf[p],&code->L);
|
|
|
|
//*(float*)&buf[p] = code->L;
|
|
|
|
p += 4;
|
|
|
|
}
|
|
|
|
if(code->hasO())
|
|
|
|
{
|
|
|
|
memcopy4(&buf[p],&code->O);
|
|
|
|
//*(float*)&buf[p] = code->O;
|
|
|
|
p += 4;
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
if(code->hasString()) // read 16 uint8_t into string
|
|
|
|
{
|
|
|
|
char *sp = code->text;
|
|
|
|
if(code->isV2())
|
|
|
|
{
|
|
|
|
uint8_t i = strlen(code->text);
|
|
|
|
for(; i; i--) buf[p++] = *sp++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
for(uint8_t i = 0; i < 16; ++i) buf[p++] = *sp++;
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
uint8_t *ptr = buf;
|
|
|
|
uint8_t len = p;
|
|
|
|
while (len)
|
|
|
|
{
|
|
|
|
uint8_t tlen = len > 21 ? 21 : len;
|
|
|
|
len -= tlen;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
sum1 += *ptr++;
|
2016-01-15 20:42:10 +01:00
|
|
|
if(sum1 >= 255) sum1 -= 255;
|
2015-10-16 11:04:50 +02:00
|
|
|
sum2 += sum1;
|
2016-01-15 20:42:10 +01:00
|
|
|
if(sum2 >= 255) sum2 -= 255;
|
2015-10-16 11:04:50 +02:00
|
|
|
}
|
|
|
|
while (--tlen);
|
|
|
|
}
|
|
|
|
buf[p++] = sum1;
|
|
|
|
buf[p++] = sum2;
|
2016-01-15 20:42:10 +01:00
|
|
|
// Debug
|
|
|
|
/*Com::printF(PSTR("Buf: "));
|
|
|
|
for(int i=0;i<p;i++)
|
|
|
|
Com::printF(PSTR(" "),(int)buf[i]);
|
|
|
|
Com::println();*/
|
2015-10-16 11:04:50 +02:00
|
|
|
if(params == 128)
|
|
|
|
{
|
|
|
|
Com::printErrorFLN(Com::tAPIDFinished);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
file.write(buf,p);
|
|
|
|
if (file.writeError)
|
|
|
|
{
|
|
|
|
Com::printFLN(Com::tErrorWritingToFile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *SDCard::createFilename(char *buffer,const dir_t &p)
|
|
|
|
{
|
|
|
|
char *pos = buffer,*src = (char*)p.name;
|
|
|
|
for (uint8_t i = 0; i < 11; i++,src++)
|
|
|
|
{
|
|
|
|
if (*src == ' ') continue;
|
|
|
|
if (i == 8)
|
|
|
|
*pos++ = '.';
|
|
|
|
*pos++ = *src;
|
|
|
|
}
|
|
|
|
*pos = 0;
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SDCard::showFilename(const uint8_t *name)
|
|
|
|
{
|
|
|
|
if (*name == DIR_NAME_DELETED || *name == '.') return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int8_t RFstricmp(const char* s1, const char* s2)
|
|
|
|
{
|
|
|
|
while(*s1 && (tolower(*s1) == tolower(*s2)))
|
|
|
|
s1++,s2++;
|
|
|
|
return (const uint8_t)tolower(*s1)-(const uint8_t)tolower(*s2);
|
|
|
|
}
|
|
|
|
|
|
|
|
int8_t RFstrnicmp(const char* s1, const char* s2, size_t n)
|
|
|
|
{
|
|
|
|
while(n--)
|
|
|
|
{
|
|
|
|
if(tolower(*s1)!=tolower(*s2))
|
|
|
|
return (uint8_t)tolower(*s1) - (uint8_t)tolower(*s2);
|
|
|
|
s1++;
|
|
|
|
s2++;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::ls()
|
|
|
|
{
|
|
|
|
SdBaseFile file;
|
|
|
|
|
|
|
|
Com::printFLN(Com::tBeginFileList);
|
|
|
|
fat.chdir();
|
|
|
|
|
|
|
|
file.openRoot(fat.vol());
|
|
|
|
file.ls(0, 0);
|
|
|
|
Com::printFLN(Com::tEndFileList);
|
|
|
|
}
|
2016-07-02 18:11:43 +02:00
|
|
|
|
|
|
|
#if JSON_OUTPUT
|
|
|
|
void SDCard::lsJSON(const char *filename)
|
|
|
|
{
|
|
|
|
SdBaseFile dir;
|
|
|
|
fat.chdir();
|
|
|
|
if (*filename == 0) {
|
|
|
|
dir.openRoot(fat.vol());
|
|
|
|
} else {
|
|
|
|
if (!dir.open(fat.vwd(), filename, O_READ) || !dir.isDir()) {
|
|
|
|
Com::printF(Com::tJSONErrorStart);
|
|
|
|
Com::printF(Com::tFileOpenFailed);
|
|
|
|
Com::printFLN(Com::tJSONErrorEnd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Com::printF(Com::tJSONDir);
|
|
|
|
SDCard::printEscapeChars(filename);
|
|
|
|
Com::printF(Com::tJSONFiles);
|
|
|
|
dir.lsJSON();
|
|
|
|
Com::printFLN(Com::tJSONArrayEnd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::printEscapeChars(const char *s) {
|
|
|
|
for (unsigned int i = 0; i < strlen(s); ++i) {
|
|
|
|
switch (s[i]) {
|
|
|
|
case '"':
|
|
|
|
case '/':
|
|
|
|
case '\b':
|
|
|
|
case '\f':
|
|
|
|
case '\n':
|
|
|
|
case '\r':
|
|
|
|
case '\t':
|
|
|
|
case '\\':
|
|
|
|
Com::print('\\');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Com::print(s[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::JSONFileInfo(const char* filename) {
|
|
|
|
SdBaseFile targetFile;
|
|
|
|
GCodeFileInfo *info,tmpInfo;
|
|
|
|
if (strlen(filename) == 0) {
|
|
|
|
targetFile = file;
|
|
|
|
info = &fileInfo;
|
|
|
|
} else {
|
|
|
|
if (!targetFile.open(fat.vwd(), filename, O_READ) || targetFile.isDir()) {
|
|
|
|
Com::printF(Com::tJSONErrorStart);
|
|
|
|
Com::printF(Com::tFileOpenFailed);
|
|
|
|
Com::printFLN(Com::tJSONErrorEnd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
info = &tmpInfo;
|
|
|
|
info->init(targetFile);
|
|
|
|
}
|
|
|
|
if (!targetFile.isOpen()) {
|
|
|
|
Com::printF(Com::tJSONErrorStart);
|
|
|
|
Com::printF(Com::tNotSDPrinting);
|
|
|
|
Com::printFLN(Com::tJSONErrorEnd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// {"err":0,"size":457574,"height":4.00,"layerHeight":0.25,"filament":[6556.3],"generatedBy":"Slic3r 1.1.7 on 2014-11-09 at 17:11:32"}
|
|
|
|
Com::printF(Com::tJSONFileInfoStart);
|
|
|
|
Com::print(info->fileSize);
|
|
|
|
Com::printF(Com::tJSONFileInfoHeight);
|
|
|
|
Com::print(info->objectHeight);
|
|
|
|
Com::printF(Com::tJSONFileInfoLayerHeight);
|
|
|
|
Com::print(info->layerHeight);
|
|
|
|
Com::printF(Com::tJSONFileInfoFilament);
|
|
|
|
Com::print(info->filamentNeeded);
|
|
|
|
Com::printF(Com::tJSONFileInfoGeneratedBy);
|
|
|
|
Com::print(info->generatedBy);
|
|
|
|
Com::print('"');
|
|
|
|
if (strlen(filename) == 0) {
|
|
|
|
Com::printF(Com::tJSONFileInfoName);
|
|
|
|
file.printName();
|
|
|
|
Com::print('"');
|
|
|
|
}
|
|
|
|
Com::print('}');
|
|
|
|
Com::println();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2015-10-16 11:04:50 +02:00
|
|
|
|
|
|
|
bool SDCard::selectFile(const char *filename, bool silent)
|
|
|
|
{
|
|
|
|
SdBaseFile parent;
|
|
|
|
const char *oldP = filename;
|
|
|
|
|
|
|
|
if(!sdactive) return false;
|
|
|
|
sdmode = 0;
|
|
|
|
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
parent = *fat.vwd();
|
|
|
|
if (file.open(&parent, filename, O_READ))
|
|
|
|
{
|
|
|
|
if ((oldP = strrchr(filename, '/')) != NULL)
|
|
|
|
oldP++;
|
|
|
|
else
|
|
|
|
oldP = filename;
|
|
|
|
|
|
|
|
if(!silent)
|
|
|
|
{
|
|
|
|
Com::printF(Com::tFileOpened, oldP);
|
|
|
|
Com::printFLN(Com::tSpaceSizeColon,file.fileSize());
|
2016-07-02 18:11:43 +02:00
|
|
|
}
|
|
|
|
#if JSON_OUTPUT
|
|
|
|
fileInfo.init(file);
|
2016-01-15 20:42:10 +01:00
|
|
|
#endif
|
2015-10-16 11:04:50 +02:00
|
|
|
sdpos = 0;
|
|
|
|
filesize = file.fileSize();
|
|
|
|
Com::printFLN(Com::tFileSelected);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(!silent)
|
|
|
|
Com::printFLN(Com::tFileOpenFailed);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::printStatus()
|
|
|
|
{
|
|
|
|
if(sdactive)
|
|
|
|
{
|
|
|
|
Com::printF(Com::tSDPrintingByte, sdpos);
|
|
|
|
Com::printFLN(Com::tSlash, filesize);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Com::printFLN(Com::tNotSDPrinting);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::startWrite(char *filename)
|
|
|
|
{
|
|
|
|
if(!sdactive) return;
|
|
|
|
file.close();
|
|
|
|
sdmode = 0;
|
|
|
|
fat.chdir();
|
|
|
|
if(!file.open(filename, O_CREAT | O_APPEND | O_WRITE | O_TRUNC))
|
|
|
|
{
|
|
|
|
Com::printFLN(Com::tOpenFailedFile,filename);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-15 20:42:10 +01:00
|
|
|
UI_STATUS_F(Com::translatedF(UI_TEXT_UPLOADING_ID));
|
2015-10-16 11:04:50 +02:00
|
|
|
savetosd = true;
|
|
|
|
Com::printFLN(Com::tWritingToFile,filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::finishWrite()
|
|
|
|
{
|
|
|
|
if(!savetosd) return; // already closed or never opened
|
|
|
|
file.sync();
|
|
|
|
file.close();
|
|
|
|
savetosd = false;
|
|
|
|
Com::printFLN(Com::tDoneSavingFile);
|
|
|
|
UI_CLEAR_STATUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::deleteFile(char *filename)
|
|
|
|
{
|
|
|
|
if(!sdactive) return;
|
|
|
|
sdmode = 0;
|
|
|
|
file.close();
|
|
|
|
if(fat.remove(filename))
|
|
|
|
{
|
|
|
|
Com::printFLN(Com::tFileDeleted);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(fat.rmdir(filename))
|
|
|
|
Com::printFLN(Com::tFileDeleted);
|
|
|
|
else
|
|
|
|
Com::printFLN(Com::tDeletionFailed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SDCard::makeDirectory(char *filename)
|
|
|
|
{
|
|
|
|
if(!sdactive) return;
|
|
|
|
sdmode = 0;
|
|
|
|
file.close();
|
|
|
|
if(fat.mkdir(filename))
|
|
|
|
{
|
|
|
|
Com::printFLN(Com::tDirectoryCreated);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Com::printFLN(Com::tCreationFailed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef GLENN_DEBUG
|
|
|
|
void SDCard::writeToFile()
|
|
|
|
{
|
|
|
|
size_t nbyte;
|
|
|
|
char szName[10];
|
|
|
|
|
|
|
|
strcpy(szName, "Testing\r\n");
|
|
|
|
nbyte = file.write(szName, strlen(szName));
|
|
|
|
Com::print("L=");
|
|
|
|
Com::print((long)nbyte);
|
|
|
|
Com::println();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|