From b6ffea612a360e377b3e89404ca79e92470d0624 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Mon, 24 Nov 2014 20:26:27 -0800 Subject: [PATCH] Expand on More RAM concept, address minor bugs --- Marlin/cardreader.h | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/Marlin/cardreader.h b/Marlin/cardreader.h index 494a315f2..fd8635a5b 100644 --- a/Marlin/cardreader.h +++ b/Marlin/cardreader.h @@ -46,11 +46,7 @@ public: #ifdef SDCARD_SORT_ALPHA void presort(); void flush_presort(); -<<<<<<< HEAD void getfilename_sorted(const uint16_t nr); -======= - void getfilename_sorted(const uint8_t nr); ->>>>>>> SD Card Alpha Sorting #endif @@ -64,37 +60,22 @@ public: public: bool saving; bool logging; -<<<<<<< HEAD bool sdprinting; bool cardOK; char filename[FILENAME_LENGTH]; char longFilename[LONG_FILENAME_LENGTH]; -======= - bool sdprinting ; - bool cardOK; - char filename[FILENAME_LENGTH]; - char diveFilename[LONG_FILENAME_LENGTH]; ->>>>>>> SD Card Alpha Sorting bool filenameIsDir; int lastnr; //last number of the autostart; private: SdFile root,*curDir,workDir,workDirParents[MAX_DIR_DEPTH]; uint16_t workDirDepth; #ifdef SDCARD_SORT_ALPHA -<<<<<<< HEAD uint16_t sort_count; uint8_t *sort_order; #if SORT_USES_MORE_RAM char **sortshort; char **sortnames; uint8_t *isDir; -======= - #if SORT_USES_MORE_RAM - uint16_t sort_count; - char **sortnames; - #else - uint8_t sort_order[SORT_LIMIT]; ->>>>>>> SD Card Alpha Sorting #endif #endif Sd2Card card;