My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
Johann Rocholl 1f45cb0a51 Fix typo in MANUAL_HOME_POSITION (plural S missing) and improve comments. 12 年前
..
Gen7 Fix Gen7 compile if you have avr-libc version 1.7.1 or higher. See http://code.google.com/p/arduino/issues/detail?id=604 12 年前
Sanguino Fixed compiler warning for Sanguino compile 13 年前
hardware/tools/avr/etc ATMega1284P support for Arduino IDE 13 年前
COPYING first commit 14 年前
Configuration.h Fix typo in MANUAL_HOME_POSITION (plural S missing) and improve comments. 12 年前
ConfigurationStore.cpp Fixed #317 12 年前
ConfigurationStore.h Changed the naming of some LCD functions, so the names match better what the function does. Also moved around some prototypes for general cleanup. 12 年前
Configuration_adv.h Fix typo in MANUAL_HOME_POSITION (plural S missing) and improve comments. 12 年前
LCD Menu Tree.pdf Added PDF file containing Menu Tree for documentation purposes. Source xlsx document included. 13 年前
LiquidCrystalRus.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. 12 年前
LiquidCrystalRus.h Enables support the Cyrillic alphabet for LCD 12 年前
Makefile Add printrboard and brainwave to Makefile. 12 年前
Marlin.h AT90USB is only defined after pins.h is included. 12 年前
Marlin.pde Mistake there, not sure why I did that. My bad. 12 年前
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. 12 年前
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. 12 年前
Marlin_main.cpp The Partial release message (which does not really tell you anything) overwrites the final print time on the LCD, which is a real shame. So I removed the message. 12 年前
Menu Plans.xlsx Tidy up 13 年前
Sd2Card.cpp Fix for a few -Wextra warnings. 12 年前
Sd2Card.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 年前
Sd2PinMap.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 年前
SdBaseFile.cpp Few simple fixes that save RAM, as static strings are stored in RAM by default. 12 年前
SdBaseFile.h Added long filename support. 13 年前
SdFatConfig.h Added long filename support. 13 年前
SdFatStructs.h Added long filename support. 13 年前
SdFatUtil.cpp Updated SERIAL define to MYSERIAL, because Arduino 1.0 defines SERIAL as 0. 13 年前
SdFatUtil.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 年前
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. 12 年前
SdFile.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 年前
SdInfo.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 年前
SdVolume.cpp made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 年前
SdVolume.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 年前
cardreader.cpp Changed the naming of some LCD functions, so the names match better what the function does. Also moved around some prototypes for general cleanup. 12 年前
cardreader.h Changed the naming of some LCD functions, so the names match better what the function does. Also moved around some prototypes for general cleanup. 12 年前
createTemperatureLookupMarlin.py Added new temperature lookup table creation tool. This one uses stein hart-hart equations. You need 3 temperature resistance:combinations. This gives a better result then using beta. 12 年前
create_speed_lookuptable.py Added 20MHz support. 13 年前
fastio.h Use the same fastio.h definition for AT90USB1286/7 and AT90USB646/7. 12 年前
language.h I hope last changes to french translation 12 年前
motion_control.cpp software_endstops: use *_MIN_POS and *_MAX_POS for arcs 13 年前
motion_control.h Removed interrupt nesting in the stepper ISR. 13 年前
pins.h Teensylu and Printrboard use different analog pins for thermistors. 12 年前
planner.cpp Changed the naming of some LCD functions, so the names match better what the function does. Also moved around some prototypes for general cleanup. 12 年前
planner.h Residual in the comments: there are no more mm/minutes but only mm/sec in the planner buffer. 13 年前
speed_lookuptable.h Made the 2nd speed lookup table condition more explicit. 12 年前
stepper.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. 12 年前
stepper.h Few simple fixes that save RAM, as static strings are stored in RAM by default. 12 年前
temperature.cpp Fix the WATCHPERIOD implementation. It did not work correctly in a multi extruder setup, it did not work after 32 seconds after startup (int16 used as millies timestamp). And it did not work if you gave an M104 or M109 when the target was already around the target setpoint. So on average, it did not work at all. The new implementation should be robust in detecting a failure to heat up. 12 年前
temperature.h Fix the WATCHPERIOD implementation. It did not work correctly in a multi extruder setup, it did not work after 32 seconds after startup (int16 used as millies timestamp). And it did not work if you gave an M104 or M109 when the target was already around the target setpoint. So on average, it did not work at all. The new implementation should be robust in detecting a failure to heat up. 12 年前
thermistortables.h allow marlin internal 0°C represenation 12 年前
ultralcd.cpp Changed the naming of some LCD functions, so the names match better what the function does. Also moved around some prototypes for general cleanup. 12 年前
ultralcd.h Changed the naming of some LCD functions, so the names match better what the function does. Also moved around some prototypes for general cleanup. 12 年前
watchdog.cpp Fix compiling the watchdog error message when the manual reset watchdog is used. 12 年前
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. 12 年前
wiring.h add wiring.h, that can be used to overwrite: 13 年前