├── .gitattributes ├── .gitignore ├── COPYING ├── Configuration.h ├── ConfigurationStore.cpp ├── ConfigurationStore.h ├── Configuration_adv.h ├── DOGMbitmaps.h ├── LCD Menu Tree.pdf ├── LiquidCrystalRus.cpp ├── LiquidCrystalRus.h ├── Makefile ├── Marlin.h ├── Marlin.ino ├── MarlinSerial.cpp ├── MarlinSerial.h ├── Marlin_main.cpp ├── Menu Plans.xlsx ├── README.md ├── Sd2Card.cpp ├── Sd2Card.h ├── Sd2PinMap.h ├── SdBaseFile.cpp ├── SdBaseFile.h ├── SdFatConfig.h ├── SdFatStructs.h ├── SdFatUtil.cpp ├── SdFatUtil.h ├── SdFile.cpp ├── SdFile.h ├── SdInfo.h ├── SdVolume.cpp ├── SdVolume.h ├── Servo.cpp ├── Servo.h ├── cardreader.cpp ├── cardreader.h ├── createTemperatureLookupMarlin.py ├── create_speed_lookuptable.py ├── dogm_font_data_marlin.h ├── dogm_lcd_implementation.h ├── example_configurations └── delta │ ├── Configuration.h │ └── Configuration_adv.h ├── fastio.h ├── language.h ├── motion_control.cpp ├── motion_control.h ├── pins.h ├── planner.cpp ├── planner.h ├── speed_lookuptable.h ├── stepper.cpp ├── stepper.h ├── temperature.cpp ├── temperature.h ├── thermistortables.h ├── ultralcd.cpp ├── ultralcd.h ├── ultralcd_implementation_hitachi_HD44780.h ├── ultralcd_st7920_u8glib_rrd.h ├── watchdog.cpp └── watchdog.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/COPYING -------------------------------------------------------------------------------- /Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/Configuration.h -------------------------------------------------------------------------------- /ConfigurationStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/ConfigurationStore.cpp -------------------------------------------------------------------------------- /ConfigurationStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/ConfigurationStore.h -------------------------------------------------------------------------------- /Configuration_adv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/Configuration_adv.h -------------------------------------------------------------------------------- /DOGMbitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/DOGMbitmaps.h -------------------------------------------------------------------------------- /LCD Menu Tree.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/LCD Menu Tree.pdf -------------------------------------------------------------------------------- /LiquidCrystalRus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/LiquidCrystalRus.cpp -------------------------------------------------------------------------------- /LiquidCrystalRus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/LiquidCrystalRus.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/Makefile -------------------------------------------------------------------------------- /Marlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/Marlin.h -------------------------------------------------------------------------------- /Marlin.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/Marlin.ino -------------------------------------------------------------------------------- /MarlinSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/MarlinSerial.cpp -------------------------------------------------------------------------------- /MarlinSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/MarlinSerial.h -------------------------------------------------------------------------------- /Marlin_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/Marlin_main.cpp -------------------------------------------------------------------------------- /Menu Plans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/Menu Plans.xlsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/README.md -------------------------------------------------------------------------------- /Sd2Card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/Sd2Card.cpp -------------------------------------------------------------------------------- /Sd2Card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/Sd2Card.h -------------------------------------------------------------------------------- /Sd2PinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/Sd2PinMap.h -------------------------------------------------------------------------------- /SdBaseFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/SdBaseFile.cpp -------------------------------------------------------------------------------- /SdBaseFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/SdBaseFile.h -------------------------------------------------------------------------------- /SdFatConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/SdFatConfig.h -------------------------------------------------------------------------------- /SdFatStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/SdFatStructs.h -------------------------------------------------------------------------------- /SdFatUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/SdFatUtil.cpp -------------------------------------------------------------------------------- /SdFatUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/SdFatUtil.h -------------------------------------------------------------------------------- /SdFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/SdFile.cpp -------------------------------------------------------------------------------- /SdFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/SdFile.h -------------------------------------------------------------------------------- /SdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/SdInfo.h -------------------------------------------------------------------------------- /SdVolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/SdVolume.cpp -------------------------------------------------------------------------------- /SdVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/SdVolume.h -------------------------------------------------------------------------------- /Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/Servo.cpp -------------------------------------------------------------------------------- /Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/Servo.h -------------------------------------------------------------------------------- /cardreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/cardreader.cpp -------------------------------------------------------------------------------- /cardreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/cardreader.h -------------------------------------------------------------------------------- /createTemperatureLookupMarlin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/createTemperatureLookupMarlin.py -------------------------------------------------------------------------------- /create_speed_lookuptable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/create_speed_lookuptable.py -------------------------------------------------------------------------------- /dogm_font_data_marlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/dogm_font_data_marlin.h -------------------------------------------------------------------------------- /dogm_lcd_implementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/dogm_lcd_implementation.h -------------------------------------------------------------------------------- /example_configurations/delta/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/example_configurations/delta/Configuration.h -------------------------------------------------------------------------------- /example_configurations/delta/Configuration_adv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/example_configurations/delta/Configuration_adv.h -------------------------------------------------------------------------------- /fastio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/fastio.h -------------------------------------------------------------------------------- /language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/language.h -------------------------------------------------------------------------------- /motion_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/motion_control.cpp -------------------------------------------------------------------------------- /motion_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/motion_control.h -------------------------------------------------------------------------------- /pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/pins.h -------------------------------------------------------------------------------- /planner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/planner.cpp -------------------------------------------------------------------------------- /planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/planner.h -------------------------------------------------------------------------------- /speed_lookuptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/speed_lookuptable.h -------------------------------------------------------------------------------- /stepper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/stepper.cpp -------------------------------------------------------------------------------- /stepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/stepper.h -------------------------------------------------------------------------------- /temperature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/temperature.cpp -------------------------------------------------------------------------------- /temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/temperature.h -------------------------------------------------------------------------------- /thermistortables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/thermistortables.h -------------------------------------------------------------------------------- /ultralcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/ultralcd.cpp -------------------------------------------------------------------------------- /ultralcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/ultralcd.h -------------------------------------------------------------------------------- /ultralcd_implementation_hitachi_HD44780.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/ultralcd_implementation_hitachi_HD44780.h -------------------------------------------------------------------------------- /ultralcd_st7920_u8glib_rrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/ultralcd_st7920_u8glib_rrd.h -------------------------------------------------------------------------------- /watchdog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/watchdog.cpp -------------------------------------------------------------------------------- /watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RichCattell/Marlin/HEAD/watchdog.h --------------------------------------------------------------------------------