2011-12-22 14:55:45 +01:00
|
|
|
#include "Marlin.h"
|
2011-11-06 21:39:53 +01:00
|
|
|
#include "cardreader.h"
|
2012-01-24 03:19:24 +01:00
|
|
|
#include "ultralcd.h"
|
|
|
|
#include "stepper.h"
|
|
|
|
#include "temperature.h"
|
2012-03-03 16:51:47 +01:00
|
|
|
#include "language.h"
|
|
|
|
|
2011-11-19 20:18:54 +01:00
|
|
|
#ifdef SDSUPPORT
|
2011-11-06 21:39:53 +01:00
|
|
|
|
2011-12-22 14:55:45 +01:00
|
|
|
|
2011-11-26 11:51:38 +01:00
|
|
|
|
2011-11-06 21:39:53 +01:00
|
|
|
CardReader::CardReader()
|
|
|
|
{
|
|
|
|
filesize = 0;
|
|
|
|
sdpos = 0;
|
2011-11-06 22:48:15 +01:00
|
|
|
sdprinting = false;
|
|
|
|
cardOK = false;
|
|
|
|
saving = false;
|
2011-11-06 21:39:53 +01:00
|
|
|
autostart_atmillis=0;
|
|
|
|
|
|
|
|
autostart_stilltocheck=true; //the sd start is delayed, because otherwise the serial cannot answer fast enought to make contact with the hostsoftware.
|
2011-12-09 12:33:00 +01:00
|
|
|
lastnr=0;
|
2011-11-06 21:39:53 +01:00
|
|
|
//power to SD reader
|
|
|
|
#if SDPOWER > -1
|
|
|
|
SET_OUTPUT(SDPOWER);
|
|
|
|
WRITE(SDPOWER,HIGH);
|
|
|
|
#endif //SDPOWER
|
|
|
|
|
|
|
|
autostart_atmillis=millis()+5000;
|
|
|
|
}
|
|
|
|
|
2011-11-19 13:13:34 +01:00
|
|
|
char *createFilename(char *buffer,const dir_t &p) //buffer>12characters
|
|
|
|
{
|
|
|
|
char *pos=buffer;
|
|
|
|
for (uint8_t i = 0; i < 11; i++)
|
|
|
|
{
|
|
|
|
if (p.name[i] == ' ')continue;
|
|
|
|
if (i == 8)
|
|
|
|
{
|
|
|
|
*pos++='.';
|
|
|
|
}
|
|
|
|
*pos++=p.name[i];
|
|
|
|
}
|
|
|
|
*pos++=0;
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2011-11-20 14:43:47 +01:00
|
|
|
|
2011-12-04 12:40:18 +01:00
|
|
|
void CardReader::lsDive(const char *prepend,SdFile parent)
|
2011-11-19 13:13:34 +01:00
|
|
|
{
|
|
|
|
dir_t p;
|
|
|
|
uint8_t cnt=0;
|
|
|
|
|
|
|
|
while (parent.readDir(p) > 0)
|
|
|
|
{
|
2012-03-19 20:06:58 +01:00
|
|
|
if( DIR_IS_SUBDIR(&p) && lsAction!=LS_Count && lsAction!=LS_GetFilename) // hence LS_SerialPrint
|
2011-11-19 13:13:34 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
char path[13*2];
|
|
|
|
char lfilename[13];
|
|
|
|
createFilename(lfilename,p);
|
|
|
|
|
|
|
|
path[0]=0;
|
|
|
|
if(strlen(prepend)==0) //avoid leading / if already in prepend
|
|
|
|
{
|
|
|
|
strcat(path,"/");
|
|
|
|
}
|
|
|
|
strcat(path,prepend);
|
|
|
|
strcat(path,lfilename);
|
|
|
|
strcat(path,"/");
|
|
|
|
|
2011-11-19 14:34:27 +01:00
|
|
|
//Serial.print(path);
|
2011-11-19 13:13:34 +01:00
|
|
|
|
|
|
|
SdFile dir;
|
|
|
|
if(!dir.open(parent,lfilename, O_READ))
|
|
|
|
{
|
|
|
|
if(lsAction==LS_SerialPrint)
|
|
|
|
{
|
|
|
|
SERIAL_ECHO_START;
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_ECHOLN(MSG_SD_CANT_OPEN_SUBDIR);
|
2011-11-19 13:13:34 +01:00
|
|
|
SERIAL_ECHOLN(lfilename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lsDive(path,dir);
|
|
|
|
//close done automatically by destructor of SdFile
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2011-11-19 14:34:27 +01:00
|
|
|
else
|
2011-11-19 13:13:34 +01:00
|
|
|
{
|
2011-11-19 14:34:27 +01:00
|
|
|
if (p.name[0] == DIR_NAME_FREE) break;
|
|
|
|
if (p.name[0] == DIR_NAME_DELETED || p.name[0] == '.'|| p.name[0] == '_') continue;
|
2011-11-20 14:43:47 +01:00
|
|
|
if ( p.name[0] == '.')
|
|
|
|
{
|
|
|
|
if ( p.name[1] != '.')
|
|
|
|
continue;
|
|
|
|
}
|
2012-03-19 20:24:40 +01:00
|
|
|
|
2011-11-19 14:34:27 +01:00
|
|
|
if (!DIR_IS_FILE_OR_SUBDIR(&p)) continue;
|
2011-11-20 14:43:47 +01:00
|
|
|
filenameIsDir=DIR_IS_SUBDIR(&p);
|
2011-11-19 14:34:27 +01:00
|
|
|
|
2012-03-19 20:24:40 +01:00
|
|
|
|
2011-11-20 14:43:47 +01:00
|
|
|
if(!filenameIsDir)
|
|
|
|
{
|
|
|
|
if(p.name[8]!='G') continue;
|
|
|
|
if(p.name[9]=='~') continue;
|
|
|
|
}
|
2011-11-19 14:34:27 +01:00
|
|
|
//if(cnt++!=nr) continue;
|
|
|
|
createFilename(filename,p);
|
|
|
|
if(lsAction==LS_SerialPrint)
|
|
|
|
{
|
|
|
|
SERIAL_PROTOCOL(prepend);
|
|
|
|
SERIAL_PROTOCOLLN(filename);
|
|
|
|
}
|
|
|
|
else if(lsAction==LS_Count)
|
|
|
|
{
|
|
|
|
nrFiles++;
|
|
|
|
}
|
|
|
|
else if(lsAction==LS_GetFilename)
|
|
|
|
{
|
|
|
|
if(cnt==nrFiles)
|
|
|
|
return;
|
|
|
|
cnt++;
|
|
|
|
|
|
|
|
}
|
2011-11-19 13:13:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CardReader::ls()
|
|
|
|
{
|
|
|
|
lsAction=LS_SerialPrint;
|
|
|
|
if(lsAction==LS_Count)
|
|
|
|
nrFiles=0;
|
|
|
|
|
|
|
|
root.rewind();
|
|
|
|
lsDive("",root);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-06 21:39:53 +01:00
|
|
|
void CardReader::initsd()
|
|
|
|
{
|
2011-11-06 22:48:15 +01:00
|
|
|
cardOK = false;
|
2011-11-20 14:43:47 +01:00
|
|
|
if(root.isOpen())
|
|
|
|
root.close();
|
|
|
|
if (!card.init(SPI_FULL_SPEED,SDSS))
|
|
|
|
{
|
|
|
|
//if (!card.init(SPI_HALF_SPEED,SDSS))
|
|
|
|
SERIAL_ECHO_START;
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_ECHOLNPGM(MSG_SD_INIT_FAIL);
|
2011-11-20 14:43:47 +01:00
|
|
|
}
|
|
|
|
else if (!volume.init(&card))
|
|
|
|
{
|
|
|
|
SERIAL_ERROR_START;
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_ERRORLNPGM(MSG_SD_VOL_INIT_FAIL);
|
2011-11-20 14:43:47 +01:00
|
|
|
}
|
|
|
|
else if (!root.openRoot(&volume))
|
|
|
|
{
|
|
|
|
SERIAL_ERROR_START;
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_ERRORLNPGM(MSG_SD_OPENROOT_FAIL);
|
2011-11-20 14:43:47 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cardOK = true;
|
|
|
|
SERIAL_ECHO_START;
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_ECHOLNPGM(MSG_SD_CARD_OK);
|
2011-11-20 14:43:47 +01:00
|
|
|
}
|
2012-03-19 20:24:40 +01:00
|
|
|
workDir=root;
|
2011-11-20 14:43:47 +01:00
|
|
|
curDir=&root;
|
2012-03-19 20:24:40 +01:00
|
|
|
/*
|
2011-11-20 14:43:47 +01:00
|
|
|
if(!workDir.openRoot(&volume))
|
|
|
|
{
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_ECHOLNPGM(MSG_SD_WORKDIR_FAIL);
|
2011-11-20 14:43:47 +01:00
|
|
|
}
|
2012-03-19 20:24:40 +01:00
|
|
|
*/
|
|
|
|
|
2011-11-06 21:39:53 +01:00
|
|
|
}
|
2011-12-26 09:20:33 +01:00
|
|
|
|
|
|
|
void CardReader::setroot()
|
|
|
|
{
|
2012-03-19 20:24:40 +01:00
|
|
|
/*if(!workDir.openRoot(&volume))
|
2011-12-26 09:20:33 +01:00
|
|
|
{
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_ECHOLNPGM(MSG_SD_WORKDIR_FAIL);
|
2012-03-19 20:24:40 +01:00
|
|
|
}*/
|
|
|
|
workDir=root;
|
|
|
|
|
|
|
|
curDir=&workDir;
|
2011-12-26 09:20:33 +01:00
|
|
|
}
|
2011-11-06 22:48:15 +01:00
|
|
|
void CardReader::release()
|
|
|
|
{
|
|
|
|
sdprinting = false;
|
|
|
|
cardOK = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CardReader::startFileprint()
|
|
|
|
{
|
|
|
|
if(cardOK)
|
|
|
|
{
|
|
|
|
sdprinting = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CardReader::pauseSDPrint()
|
|
|
|
{
|
|
|
|
if(sdprinting)
|
|
|
|
{
|
|
|
|
sdprinting = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-19 13:13:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
void CardReader::openFile(char* name,bool read)
|
2011-11-06 22:48:15 +01:00
|
|
|
{
|
2011-11-19 13:13:34 +01:00
|
|
|
if(!cardOK)
|
|
|
|
return;
|
|
|
|
file.close();
|
|
|
|
sdprinting = false;
|
2011-11-19 14:34:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
SdFile myDir;
|
|
|
|
curDir=&root;
|
|
|
|
char *fname=name;
|
|
|
|
|
|
|
|
char *dirname_start,*dirname_end;
|
2011-11-19 15:36:49 +01:00
|
|
|
if(name[0]=='/')
|
2011-11-19 14:34:27 +01:00
|
|
|
{
|
2011-11-19 15:36:49 +01:00
|
|
|
dirname_start=strchr(name,'/')+1;
|
|
|
|
while(dirname_start>0)
|
2011-11-19 14:34:27 +01:00
|
|
|
{
|
2011-11-19 15:36:49 +01:00
|
|
|
dirname_end=strchr(dirname_start,'/');
|
|
|
|
//SERIAL_ECHO("start:");SERIAL_ECHOLN((int)(dirname_start-name));
|
|
|
|
//SERIAL_ECHO("end :");SERIAL_ECHOLN((int)(dirname_end-name));
|
|
|
|
if(dirname_end>0 && dirname_end>dirname_start)
|
2011-11-19 14:34:27 +01:00
|
|
|
{
|
2011-11-19 15:36:49 +01:00
|
|
|
char subdirname[13];
|
|
|
|
strncpy(subdirname, dirname_start, dirname_end-dirname_start);
|
|
|
|
subdirname[dirname_end-dirname_start]=0;
|
|
|
|
SERIAL_ECHOLN(subdirname);
|
|
|
|
if(!myDir.open(curDir,subdirname,O_READ))
|
|
|
|
{
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_PROTOCOLPGM(MSG_SD_OPEN_FILE_FAIL);
|
2011-11-19 15:36:49 +01:00
|
|
|
SERIAL_PROTOCOL(subdirname);
|
|
|
|
SERIAL_PROTOCOLLNPGM(".");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
;//SERIAL_ECHOLN("dive ok");
|
|
|
|
|
|
|
|
curDir=&myDir;
|
|
|
|
dirname_start=dirname_end+1;
|
2011-11-19 14:34:27 +01:00
|
|
|
}
|
2011-11-19 15:36:49 +01:00
|
|
|
else // the reminder after all /fsa/fdsa/ is the filename
|
|
|
|
{
|
|
|
|
fname=dirname_start;
|
|
|
|
//SERIAL_ECHOLN("remaider");
|
|
|
|
//SERIAL_ECHOLN(fname);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-11-19 14:34:27 +01:00
|
|
|
}
|
|
|
|
}
|
2011-11-20 14:43:47 +01:00
|
|
|
else //relative path
|
|
|
|
{
|
|
|
|
curDir=&workDir;
|
|
|
|
}
|
2011-11-19 13:13:34 +01:00
|
|
|
if(read)
|
|
|
|
{
|
2011-11-19 14:34:27 +01:00
|
|
|
if (file.open(curDir, fname, O_READ))
|
2011-11-19 13:13:34 +01:00
|
|
|
{
|
2011-11-06 22:48:15 +01:00
|
|
|
filesize = file.fileSize();
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_PROTOCOLPGM(MSG_SD_FILE_OPENED);
|
2011-11-19 14:34:27 +01:00
|
|
|
SERIAL_PROTOCOL(fname);
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_PROTOCOLPGM(MSG_SD_SIZE);
|
2011-11-09 20:27:15 +01:00
|
|
|
SERIAL_PROTOCOLLN(filesize);
|
2011-11-06 22:48:15 +01:00
|
|
|
sdpos = 0;
|
|
|
|
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_PROTOCOLLNPGM(MSG_SD_FILE_SELECTED);
|
2011-11-20 16:05:42 +01:00
|
|
|
LCD_MESSAGE(fname);
|
2011-11-06 22:48:15 +01:00
|
|
|
}
|
2011-11-19 13:13:34 +01:00
|
|
|
else
|
|
|
|
{
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_PROTOCOLPGM(MSG_SD_OPEN_FILE_FAIL);
|
2011-11-19 15:36:49 +01:00
|
|
|
SERIAL_PROTOCOL(fname);
|
|
|
|
SERIAL_PROTOCOLLNPGM(".");
|
2011-11-06 22:48:15 +01:00
|
|
|
}
|
|
|
|
}
|
2011-11-19 13:13:34 +01:00
|
|
|
else
|
|
|
|
{ //write
|
2011-11-19 14:34:27 +01:00
|
|
|
if (!file.open(curDir, fname, O_CREAT | O_APPEND | O_WRITE | O_TRUNC))
|
2011-11-06 22:48:15 +01:00
|
|
|
{
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_PROTOCOLPGM(MSG_SD_OPEN_FILE_FAIL);
|
2011-11-19 14:34:27 +01:00
|
|
|
SERIAL_PROTOCOL(fname);
|
2011-11-09 20:27:15 +01:00
|
|
|
SERIAL_PROTOCOLLNPGM(".");
|
2011-11-06 22:48:15 +01:00
|
|
|
}
|
2011-11-19 13:13:34 +01:00
|
|
|
else
|
|
|
|
{
|
2011-11-06 22:48:15 +01:00
|
|
|
saving = true;
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_PROTOCOLPGM(MSG_SD_WRITE_TO_FILE);
|
2011-11-09 20:27:15 +01:00
|
|
|
SERIAL_PROTOCOLLN(name);
|
2011-11-20 16:05:42 +01:00
|
|
|
LCD_MESSAGE(fname);
|
2011-11-06 22:48:15 +01:00
|
|
|
}
|
|
|
|
}
|
2011-11-19 13:13:34 +01:00
|
|
|
|
2011-11-06 22:48:15 +01:00
|
|
|
}
|
|
|
|
|
2012-03-03 21:58:12 +01:00
|
|
|
void CardReader::removeFile(char* name)
|
|
|
|
{
|
|
|
|
if(!cardOK)
|
|
|
|
return;
|
|
|
|
file.close();
|
|
|
|
sdprinting = false;
|
|
|
|
|
|
|
|
|
|
|
|
SdFile myDir;
|
|
|
|
curDir=&root;
|
|
|
|
char *fname=name;
|
|
|
|
|
|
|
|
char *dirname_start,*dirname_end;
|
|
|
|
if(name[0]=='/')
|
|
|
|
{
|
|
|
|
dirname_start=strchr(name,'/')+1;
|
|
|
|
while(dirname_start>0)
|
|
|
|
{
|
|
|
|
dirname_end=strchr(dirname_start,'/');
|
|
|
|
//SERIAL_ECHO("start:");SERIAL_ECHOLN((int)(dirname_start-name));
|
|
|
|
//SERIAL_ECHO("end :");SERIAL_ECHOLN((int)(dirname_end-name));
|
|
|
|
if(dirname_end>0 && dirname_end>dirname_start)
|
|
|
|
{
|
|
|
|
char subdirname[13];
|
|
|
|
strncpy(subdirname, dirname_start, dirname_end-dirname_start);
|
|
|
|
subdirname[dirname_end-dirname_start]=0;
|
|
|
|
SERIAL_ECHOLN(subdirname);
|
|
|
|
if(!myDir.open(curDir,subdirname,O_READ))
|
|
|
|
{
|
|
|
|
SERIAL_PROTOCOLPGM("open failed, File: ");
|
|
|
|
SERIAL_PROTOCOL(subdirname);
|
|
|
|
SERIAL_PROTOCOLLNPGM(".");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
;//SERIAL_ECHOLN("dive ok");
|
|
|
|
|
|
|
|
curDir=&myDir;
|
|
|
|
dirname_start=dirname_end+1;
|
|
|
|
}
|
|
|
|
else // the reminder after all /fsa/fdsa/ is the filename
|
|
|
|
{
|
|
|
|
fname=dirname_start;
|
|
|
|
//SERIAL_ECHOLN("remaider");
|
|
|
|
//SERIAL_ECHOLN(fname);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else //relative path
|
|
|
|
{
|
|
|
|
curDir=&workDir;
|
|
|
|
}
|
|
|
|
if (file.remove(curDir, fname))
|
|
|
|
{
|
|
|
|
SERIAL_PROTOCOLPGM("File deleted:");
|
|
|
|
SERIAL_PROTOCOL(fname);
|
|
|
|
sdpos = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SERIAL_PROTOCOLPGM("Deletion failed, File: ");
|
|
|
|
SERIAL_PROTOCOL(fname);
|
|
|
|
SERIAL_PROTOCOLLNPGM(".");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-11-06 22:48:15 +01:00
|
|
|
void CardReader::getStatus()
|
|
|
|
{
|
|
|
|
if(cardOK){
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_PROTOCOLPGM(MSG_SD_PRINTING_BYTE);
|
2011-11-09 20:27:15 +01:00
|
|
|
SERIAL_PROTOCOL(sdpos);
|
|
|
|
SERIAL_PROTOCOLPGM("/");
|
|
|
|
SERIAL_PROTOCOLLN(filesize);
|
2011-11-06 22:48:15 +01:00
|
|
|
}
|
|
|
|
else{
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_PROTOCOLLNPGM(MSG_SD_NOT_PRINTING);
|
2011-11-06 22:48:15 +01:00
|
|
|
}
|
|
|
|
}
|
2011-11-06 21:39:53 +01:00
|
|
|
void CardReader::write_command(char *buf)
|
|
|
|
{
|
|
|
|
char* begin = buf;
|
|
|
|
char* npos = 0;
|
|
|
|
char* end = buf + strlen(buf) - 1;
|
|
|
|
|
|
|
|
file.writeError = false;
|
|
|
|
if((npos = strchr(buf, 'N')) != NULL)
|
|
|
|
{
|
|
|
|
begin = strchr(npos, ' ') + 1;
|
|
|
|
end = strchr(npos, '*') - 1;
|
|
|
|
}
|
|
|
|
end[1] = '\r';
|
|
|
|
end[2] = '\n';
|
|
|
|
end[3] = '\0';
|
|
|
|
file.write(begin);
|
|
|
|
if (file.writeError)
|
|
|
|
{
|
2011-11-09 20:27:15 +01:00
|
|
|
SERIAL_ERROR_START;
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_ERRORLNPGM(MSG_SD_ERR_WRITE_TO_FILE);
|
2011-11-06 21:39:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CardReader::checkautostart(bool force)
|
|
|
|
{
|
|
|
|
if(!force)
|
|
|
|
{
|
|
|
|
if(!autostart_stilltocheck)
|
|
|
|
return;
|
|
|
|
if(autostart_atmillis<millis())
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
autostart_stilltocheck=false;
|
2011-11-06 22:48:15 +01:00
|
|
|
if(!cardOK)
|
2011-11-06 21:39:53 +01:00
|
|
|
{
|
|
|
|
initsd();
|
2011-11-06 22:48:15 +01:00
|
|
|
if(!cardOK) //fail
|
2011-11-06 21:39:53 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-12-09 12:33:00 +01:00
|
|
|
|
2011-11-06 21:39:53 +01:00
|
|
|
char autoname[30];
|
|
|
|
sprintf(autoname,"auto%i.g",lastnr);
|
2011-11-06 23:21:12 +01:00
|
|
|
for(int8_t i=0;i<(int)strlen(autoname);i++)
|
2011-11-06 21:39:53 +01:00
|
|
|
autoname[i]=tolower(autoname[i]);
|
|
|
|
dir_t p;
|
|
|
|
|
|
|
|
root.rewind();
|
|
|
|
|
|
|
|
bool found=false;
|
|
|
|
while (root.readDir(p) > 0)
|
|
|
|
{
|
2011-11-06 23:21:12 +01:00
|
|
|
for(int8_t i=0;i<(int)strlen((char*)p.name);i++)
|
2011-11-06 21:39:53 +01:00
|
|
|
p.name[i]=tolower(p.name[i]);
|
|
|
|
//Serial.print((char*)p.name);
|
|
|
|
//Serial.print(" ");
|
|
|
|
//Serial.println(autoname);
|
|
|
|
if(p.name[9]!='~') //skip safety copies
|
|
|
|
if(strncmp((char*)p.name,autoname,5)==0)
|
|
|
|
{
|
|
|
|
char cmd[30];
|
|
|
|
|
|
|
|
sprintf(cmd,"M23 %s",autoname);
|
|
|
|
enquecommand(cmd);
|
|
|
|
enquecommand("M24");
|
|
|
|
found=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!found)
|
|
|
|
lastnr=-1;
|
|
|
|
else
|
|
|
|
lastnr++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CardReader::closefile()
|
|
|
|
{
|
2011-11-06 22:48:15 +01:00
|
|
|
file.sync();
|
2011-11-06 21:39:53 +01:00
|
|
|
file.close();
|
2011-11-06 22:48:15 +01:00
|
|
|
saving = false;
|
2011-11-06 21:39:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CardReader::getfilename(const uint8_t nr)
|
|
|
|
{
|
2011-11-20 14:43:47 +01:00
|
|
|
curDir=&workDir;
|
2011-11-19 13:13:34 +01:00
|
|
|
lsAction=LS_GetFilename;
|
|
|
|
nrFiles=nr;
|
|
|
|
curDir->rewind();
|
|
|
|
lsDive("",*curDir);
|
|
|
|
|
2011-11-06 21:39:53 +01:00
|
|
|
}
|
|
|
|
|
2011-11-19 13:13:34 +01:00
|
|
|
uint16_t CardReader::getnrfilenames()
|
2011-11-06 21:39:53 +01:00
|
|
|
{
|
2011-11-20 14:43:47 +01:00
|
|
|
curDir=&workDir;
|
2011-11-19 13:13:34 +01:00
|
|
|
lsAction=LS_Count;
|
|
|
|
nrFiles=0;
|
|
|
|
curDir->rewind();
|
|
|
|
lsDive("",*curDir);
|
2011-11-20 14:43:47 +01:00
|
|
|
//SERIAL_ECHOLN(nrFiles);
|
2011-11-19 13:13:34 +01:00
|
|
|
return nrFiles;
|
2011-11-06 21:39:53 +01:00
|
|
|
}
|
|
|
|
|
2011-11-20 14:43:47 +01:00
|
|
|
void CardReader::chdir(const char * relpath)
|
|
|
|
{
|
|
|
|
SdFile newfile;
|
|
|
|
SdFile *parent=&root;
|
|
|
|
|
|
|
|
if(workDir.isOpen())
|
|
|
|
parent=&workDir;
|
|
|
|
|
|
|
|
if(!newfile.open(*parent,relpath, O_READ))
|
|
|
|
{
|
|
|
|
SERIAL_ECHO_START;
|
2012-03-03 16:51:47 +01:00
|
|
|
SERIAL_ECHOPGM(MSG_SD_CANT_ENTER_SUBDIR);
|
2011-11-20 14:43:47 +01:00
|
|
|
SERIAL_ECHOLN(relpath);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
workDirParentParent=workDirParent;
|
|
|
|
workDirParent=*parent;
|
|
|
|
|
|
|
|
workDir=newfile;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CardReader::updir()
|
|
|
|
{
|
|
|
|
if(!workDir.isRoot())
|
|
|
|
{
|
|
|
|
workDir=workDirParent;
|
|
|
|
workDirParent=workDirParentParent;
|
|
|
|
}
|
|
|
|
}
|
2011-11-06 21:39:53 +01:00
|
|
|
|
2011-11-26 11:51:38 +01:00
|
|
|
|
|
|
|
void CardReader::printingHasFinished()
|
|
|
|
{
|
2011-12-22 11:45:52 +01:00
|
|
|
st_synchronize();
|
2011-12-11 22:10:06 +01:00
|
|
|
quickStop();
|
2011-11-26 11:51:38 +01:00
|
|
|
sdprinting = false;
|
|
|
|
if(SD_FINISHED_STEPPERRELEASE)
|
|
|
|
{
|
2011-12-09 12:33:00 +01:00
|
|
|
//finishAndDisableSteppers();
|
2011-12-09 12:51:08 +01:00
|
|
|
enquecommand(SD_FINISHED_RELEASECOMMAND);
|
2011-11-26 11:51:38 +01:00
|
|
|
}
|
2011-12-04 09:48:53 +01:00
|
|
|
autotempShutdown();
|
2011-11-26 11:51:38 +01:00
|
|
|
}
|
2011-12-06 05:33:33 +01:00
|
|
|
#endif //SDSUPPORT
|