Fix bug in CardReader::stopSDPrint

If the SD print is paused, it cannot be stopped
This commit is contained in:
Scott Lahteine
2016-08-12 03:21:10 -07:00
parent 11027a56b6
commit 61932b859e
2 changed files with 7 additions and 15 deletions

View File

@ -51,7 +51,6 @@ public:
void release();
void openAndPrintFile(const char *name);
void startFileprint();
void pauseSDPrint();
void stopSDPrint();
void getStatus();
void printingHasFinished();
@ -70,6 +69,7 @@ public:
void updir();
void setroot();
FORCE_INLINE void pauseSDPrint() { sdprinting = false; }
FORCE_INLINE bool isFileOpen() { return file.isOpen(); }
FORCE_INLINE bool eof() { return sdpos >= filesize; }
FORCE_INLINE int16_t get() { sdpos = file.curPosition(); return (int16_t)file.read(); }