chiark / gitweb /
even more format.
[marlin.git] / README.md
1 \r
2 WARNING: \r
3 --------\r
4 THIS IN A PROCESS OF HEAVY OVERWORKING.\r
5 DO NOT USE THIS ON YOUR MACHINE UNTIL FURTHER NOTICE!!!\r
6 \r
7 Quick Information\r
8 ===================\r
9 This RepRap firmware is a mashup between <a href="https://github.com/kliment/Sprinter">Sprinter</a>, <a href="https://github.com/simen/grbl/tree">grbl</a> and many original parts.\r
10 \r
11 Derived from Sprinter and Grbl by Erik van der Zalm.\r
12 Sprinters lead developers are Kliment and caru.\r
13 Grbls lead developer is Simen Svale Skogsrud.\r
14 A fork by bkubicek for the Ultimaker was merged, and further development was aided by him.\r
15 Some features have been added by:\r
16 Lampmaker, Bradley Feldman, and others...\r
17 \r
18 \r
19 Features:\r
20 \r
21 *   Interrupt based movement with real linear acceleration\r
22 *   High steprate\r
23 *   Look ahead (Keep the speed high when possible. High cornering speed)\r
24 *   Interrupt based temperature protection\r
25 *   preliminary support for Matthew Roberts advance algorithm \r
26 *   For more info see: http://reprap.org/pipermail/reprap-dev/2011-May/003323.html\r
27 *   Full endstop support\r
28 *   SD Card support\r
29 *   SD Card folders (works in pronterface)\r
30 *   LCD support (ideally 20x4) \r
31 *   LCD menu system for autonomous SD card printing, controlled by an click-encoder. \r
32 *   EEPROM storage of e.g. max-velocity, max-acceleration, and similar variables\r
33 *   many small but handy things originating from bkubicek's fork.\r
34 *   Arc support\r
35 *   Temperature oversampling\r
36 *   Dynamic Temperature setpointing aka "AutoTemp"\r
37 *   Support for QTMarlin, a very beta GUI for PID-tuning and velocity-acceleration testing. https://github.com/bkubicek/QTMarlin\r
38 *   Endstop trigger reporting to the host software.\r
39 *   Updated sdcardlib\r
40 *   Heater power reporting. Useful for PID monitoring.\r
41 \r
42 This firmware is optimized for Ultimaker's gen6 electronics (including the Ultimaker 1.5.x daughterboard and Arduino Mega 2560).\r
43 \r
44 The default baudrate is 250000. This baudrate has less jitter and hence errors than the usual 115200 baud, but is less supported by drivers and host-environments.\r
45 \r
46 \r
47 Differences and additions to the already good Sprinter firmware:\r
48 ================================================================\r
49 \r
50 *Look-ahead:*\r
51 \r
52 Marlin has look-ahead. While sprinter has to break and re-accelerate at each corner, \r
53 lookahead will only decelerate and accelerate to a velocity, \r
54 so that the change in vectorial velocity magnitude is less than the xy_jerk_velocity.\r
55 This is only possible, if some future moves are already processed, hence the name. \r
56 It leads to less over-deposition at corners, especially at flat angles.\r
57 \r
58 *Arc support:*\r
59 Splic3r can find curves that, although broken into segments, were ment to describe an arc.\r
60 Marlin is able to print those arcs. The advantage is the firmware can choose the resolution,\r
61 and can perform the arc with nearly constant velocity, resulting in a nice finish. \r
62 Also, less serial communication is needed.\r
63 \r
64 *Temperature Oversampling:*\r
65 \r
66 To reduce noise and make the PID-differential term more useful, 16 ADC conversion results are averaged.\r
67 \r
68 *AutoTemp:*\r
69 \r
70 If your gcode contains a wide spread of extruder velocities, or you realtime change the building speed, the temperature should be changed accordingly.\r
71 Usually, higher speed requires higher temperature.\r
72 This can now be performed by the AutoTemp function\r
73 By calling M109 S<mintemp> T<maxtemp> F<factor> you enter the autotemp mode.\r
74 \r
75 You can leave it by calling M109 without any F.\r
76 If active, the maximal extruder stepper rate of all buffered moves will be calculated, and named "maxerate" [steps/sec].\r
77 The wanted temperature then will be set to t=tempmin+factor*maxerate, while being limited between tempmin and tempmax.\r
78 If the target temperature is set manually or by gcode to a value less then tempmin, it will be kept without change.\r
79 Ideally, your gcode can be completely free of temperature controls, apart from a M109 S T F in the start.gcode, and a M109 S0 in the end.gcode.\r
80 \r
81 *EEPROM:*\r
82 \r
83 If you know your PID values, the acceleration and max-velocities of your unique machine, you can set them, and finally store them in the EEPROM.\r
84 After each reboot, it will magically load them from EEPROM, independent what your Configuration.h says.\r
85 \r
86 *LCD Menu:*\r
87 \r
88 If your hardware supports it, you can build yourself a LCD-CardReader+Click+encoder combination. It will enable you to realtime tune temperatures,\r
89 accelerations, velocities, flow rates, select and print files from the SD card, preheat, disable the steppers, and do other fancy stuff.\r
90 One working hardware is documented here: http://www.thingiverse.com/thing:12663 \r
91 Also, with just a 20x4 or 16x2 display, useful data is shown.\r
92 \r
93 *SD card folders:*\r
94 \r
95 If you have an SD card reader attached to your controller, also folders work now. Listing the files in pronterface will show "/path/subpath/file.g".\r
96 You can write to file in a subfolder by specifying a similar text using small letters in the path.\r
97 Also, backup copies of various operating systems are hidden, as well as files not ending with ".g".\r
98 \r
99 *Endstop trigger reporting:*\r
100 \r
101 If an endstop is hit while moving towards the endstop, the location at which the firmware thinks that the endstop was triggered is outputed on the serial port.\r
102 This is useful, because the user gets a warning message.\r
103 However, also tools like QTMarlin can use this for finding acceptable combinations of velocity+acceleration.\r
104 \r
105 *Coding paradigm:*\r
106 \r
107 Not relevant from a user side, but Marlin was split into thematic junks, and has tried to partially enforced private variables.\r
108 This is intended to make it clearer, what interacts which what, and leads to a higher level of modularization.\r
109 We think that this is a useful prestep for porting this firmware to e.g. an ARM platform in the future.\r
110 A lot of RAM (with enabled LCD ~2200 bytes) was saved by storing char []="some message" in Program memory.\r
111 In the serial communication, a #define based level of abstraction was enforced, so that it is clear that\r
112 some transfer is information (usually beginning with "echo:"), an error "error:", or just normal protocol,\r
113 necessary for backwards compatibility.\r
114 \r
115 *Interrupt based temperature measurements:*\r
116 \r
117 An interrupt is used to manage ADC conversions, and enforce checking for critical temperatures.\r
118 This leads to less blocking in the heater management routine.\r
119 \r
120 \r
121 Non-standard M-Codes, different to an old version of sprinter:\r
122 ==============================================================\r
123 *   G2  - CW ARC\r
124 *   G3  - CCW ARC\r
125 \r
126 General:\r
127 \r
128 *   M17  - Enable/Power all stepper motors\r
129 *   M18  - Disable all stepper motors; same as M84\r
130 *   M30  - Print time since last M109 or SD card start to serial\r
131 *   M42  - Change pin status via gcode\r
132 *   M80  - Turn on Power Supply\r
133 *   M81  - Turn off Power Supply\r
134 *   M114 - Output current position to serial port \r
135 *   M119 - Output Endstop status to serial port\r
136 \r
137 Movement variables:\r
138 \r
139 *   M202 - Set max acceleration in units/s^2 for travel moves (M202 X1000 Y1000) Unused in Marlin!!\r
140 *   M203 - Set maximum feedrate that your machine can sustain (M203 X200 Y200 Z300 E10000) in mm/sec\r
141 *   M204 - Set default acceleration: S normal moves T filament only moves (M204 S3000 T7000) im mm/sec^2  also sets minimum segment time in ms (B20000) to prevent buffer underruns and M20 minimum feedrate\r
142 *   M220 - set build speed factor override percentage S:factor in percent ; aka "realtime tuneing in the gcode"\r
143 *   M301 - Set PID parameters P I and D\r
144 *   M400 - Finish all moves\r
145 \r
146 Advance:\r
147 \r
148 *   M200 - Set filament diameter for advance\r
149 *   M205 -  advanced settings:  minimum travel speed S=while printing T=travel only,  B=minimum segment time X= maximum xy jerk, Z=maximum Z jerk\r
150 \r
151 EEPROM:\r
152 *   M500 - stores paramters in EEPROM\r
153 *   M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).  \r
154 *   M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.\r
155 \r
156 Configuring and compilation:\r
157 ============================\r
158 \r
159 \r
160 Install the arduino software IDE/toolset v22\r
161    http://www.arduino.cc/en/Main/Software\r
162 \r
163 Install Ultimaker's RepG 25 build\r
164     http://software.ultimaker.com\r
165 For SD handling and as better substitute (apart from stl manipulation) download\r
166 the very nice Kliment's printrun/pronterface  https://github.com/kliment/Printrun\r
167 \r
168 Copy the Ultimaker Marlin firmware\r
169    https://github.com/ErikZalm/Marlin/tree/Marlin_v1\r
170    (Use the download button)\r
171 \r
172 Start the arduino IDE.\r
173 Select Tools -> Board -> Arduino Mega 2560    or your microcontroller\r
174 Select the correct serial port in Tools ->Serial Port\r
175 Open Marlin.pde\r
176 \r
177 Click the Verify/Compile button\r
178 \r
179 Click the Upload button\r
180 If all goes well the firmware is uploading\r
181 \r
182 Start Ultimaker's Custom RepG 25\r
183 Make sure Show Experimental Profiles is enabled in Preferences\r
184 Select Sprinter as the Driver\r
185 \r
186 Press the Connect button.\r
187 \r
188 KNOWN ISSUES: RepG will display:  Unknown: marlin x.y.z\r
189 \r
190 That's ok.  Enjoy Silky Smooth Printing.\r
191 \r
192 \r
193 \r