This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/Marlin
bkubicek 7fad13a1e2 Reverse SD card file name order.
This is _not_ automatically the cronological, since deleting a file will free
the filesystem descriptor for it, which then will be used by the next file copied on it.
Since this makes the auto0.g file very inaccessible, I put the option back, to have it in the prepare menu.

this should satisfy https://github.com/ErikZalm/Marlin/pull/373

as a reminder, auto0.g will be executed every time after a boot with sd card present and file present.
thereafter, if there is a file auto1.g this will be done. Thats IMHO the best place to put settings, and prepare heating.
I also execute again after each (now again via the prepare menu) before starting a new print/ after a failed one.
It for me 100% replaces any start.gcode form the slicers.
2013-10-12 13:24:55 +02:00
..
example_configurations/delta Fix the example delta configuration as someone forgot to do it. 2013-09-05 16:36:55 -07:00
cardreader.cpp Added : M32 - Select file and start SD print (Can be used when printing from SD card) 2013-07-14 22:39:59 +02:00
cardreader.h Support for 10 level deep SD folder hierarchy 2013-05-04 04:18:02 -07:00
Configuration.h Bed Auto Leveling feature 2013-09-29 13:20:06 -03:00
Configuration_adv.h Reverse SD card file name order. 2013-10-12 13:24:55 +02:00
ConfigurationStore.cpp Removed Delta from the default config file. 2013-09-14 13:50:09 +02:00
ConfigurationStore.h Removed Delta from the default config file. 2013-09-14 13:50:09 +02:00
COPYING first commit 2011-08-12 22:28:35 +02:00
create_speed_lookuptable.py Added 20MHz support. 2012-03-11 12:25:04 +01:00
createTemperatureLookupMarlin.py Added new temperature lookup table creation tool. This one uses stein hart-hart equations. 2012-11-16 23:51:05 +01:00
dogm_font_data_marlin.h Removed STB custom font hack from u8glib library and moved to marlin project 2013-04-16 13:54:39 +02:00
dogm_lcd_implementation.h fixed bad lcd commit from makr3d 2013-07-15 17:34:21 +02:00
DOGMbitmaps.h Apply all changes from latest Marlin_V1 2013-06-06 15:49:25 -07:00
fastio.h Fixed duplicate define in fastio.h 2013-10-03 19:24:53 +02:00
language.h Update French translation in language.h 2013-07-30 14:02:08 +02:00
LCD Menu Tree.pdf Added PDF file containing Menu Tree for documentation purposes. Source xlsx document included. 2012-08-29 21:08:41 +01:00
LiquidCrystalRus.cpp Added CUSTOM_MENDEL_NAME option to Configuration.h and language.h 2013-05-02 09:22:58 -07:00
LiquidCrystalRus.h Enables support the Cyrillic alphabet for LCD 2012-10-12 19:06:43 +04:00
Makefile Detect OS in Makefile to use the correct avrdude.conf path 2013-08-01 19:20:27 +02:00
Marlin.h add command M666 for adjusting delta printer endstop position 2013-08-28 01:15:20 +02:00
Marlin.ino Bed Auto Leveling feature 2013-09-29 13:20:06 -03:00
Marlin.pde Apply all changes from latest Marlin_V1 2013-06-06 15:49:25 -07:00
Marlin_main.cpp Bed Auto Leveling feature 2013-09-29 13:20:06 -03:00
MarlinSerial.cpp Stop redefining MOTHERBOARD and #define AT90USB instead. Also put #ifndef AT90USB around the HardwareSerial_h trick, so now Printrboard / Brainwave support compiles on Arduino 1.0.2 as well. 2012-12-09 01:32:09 -08:00
MarlinSerial.h Stop redefining MOTHERBOARD and #define AT90USB instead. Also put #ifndef AT90USB around the HardwareSerial_h trick, so now Printrboard / Brainwave support compiles on Arduino 1.0.2 as well. 2012-12-09 01:32:09 -08:00
Menu Plans.xlsx Tidy up 2012-08-29 22:53:41 +01:00
motion_control.cpp software_endstops: use *_MIN_POS and *_MAX_POS for arcs 2012-08-10 19:36:30 +01:00
motion_control.h Removed interrupt nesting in the stepper ISR. 2011-11-27 21:12:55 +01:00
pins.h Update pins.h 2013-09-26 11:40:54 -03:00
planner.cpp Bed Auto Leveling feature 2013-09-29 13:20:06 -03:00
planner.h Bed Auto Leveling feature 2013-09-29 13:20:06 -03:00
Sd2Card.cpp Fix for a few -Wextra warnings. 2012-11-12 15:35:28 +01:00
Sd2Card.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 2011-12-26 09:28:51 +01:00
Sd2PinMap.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 2011-12-26 09:28:51 +01:00
SdBaseFile.cpp Few simple fixes that save RAM, as static strings are stored in RAM by default. 2012-11-28 10:30:34 +01:00
SdBaseFile.h Added long filename support. 2012-08-22 14:49:57 +02:00
SdFatConfig.h Added long filename support. 2012-08-22 14:49:57 +02:00
SdFatStructs.h Added long filename support. 2012-08-22 14:49:57 +02:00
SdFatUtil.cpp Updated SERIAL define to MYSERIAL, because Arduino 1.0 defines SERIAL as 0. 2012-02-11 16:02:47 +01:00
SdFatUtil.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 2011-12-26 09:28:51 +01:00
SdFile.cpp First cleanup. Moved all code to cpp files, so there are no dependencies on pde files. And no more odd requirement to cat files together. (Still need to fix the Makefile). Also cleaned up some defines and made defines upper case as by C coding conventions. 2012-11-06 12:06:41 +01:00
SdFile.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 2011-12-26 09:28:51 +01:00
SdInfo.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 2011-12-26 09:28:51 +01:00
SdVolume.cpp made sd code only compile with SDSUPPORT defined. safes 10k of codespace 2011-12-26 09:28:51 +01:00
SdVolume.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 2011-12-26 09:28:51 +01:00
Servo.cpp Bed Auto Leveling feature 2013-09-29 13:20:06 -03:00
Servo.h Bed Auto Leveling feature 2013-09-29 13:20:06 -03:00
speed_lookuptable.h Made the 2nd speed lookup table condition more explicit. 2012-11-11 12:02:48 +01:00
stepper.cpp added delta tower babystepping. Its untested, but hopefully florian horsch will be able to try. 2013-10-07 09:14:04 +02:00
stepper.h Add the socalled "Babystepping" feature. 2013-10-06 21:14:51 +02:00
temperature.cpp Add the socalled "Babystepping" feature. 2013-10-06 21:14:51 +02:00
temperature.h Add the socalled "Babystepping" feature. 2013-10-06 21:14:51 +02:00
thermistortables.h Added Honeywell thermistor 135-104LAF-J01 2013-07-30 14:02:18 +02:00
ultralcd.cpp Reverse SD card file name order. 2013-10-12 13:24:55 +02:00
ultralcd.h Merge branch 'Marlin_v1' of https://github.com/makr3d/Marlin into makr3d-Marlin_v1 2013-07-14 15:45:49 +02:00
ultralcd_implementation_hitachi_HD44780.h Fixed bug that makes ulticontroller knob backwards introduced Feb 28 2013 by Robert. 2013-09-10 09:56:19 -04:00
ultralcd_st7920_u8glib_rrd.h Apply all changes from latest Marlin_V1 2013-06-06 15:49:25 -07:00
vector_3.cpp Bed Auto Leveling feature 2013-09-29 13:20:06 -03:00
vector_3.h Bed Auto Leveling feature 2013-09-29 13:20:06 -03:00
watchdog.cpp Fix compiling the watchdog error message when the manual reset watchdog is used. 2012-12-06 10:27:50 +01:00
watchdog.h First cleanup. Moved all code to cpp files, so there are no dependencies on pde files. And no more odd requirement to cat files together. (Still need to fix the Makefile). Also cleaned up some defines and made defines upper case as by C coding conventions. 2012-11-06 12:06:41 +01:00