summaryrefslogtreecommitdiff
path: root/Tonokip_Firmware/Tonokip_Firmware.pde
AgeCommit message (Collapse)Author
2011-05-11Added some more intelligent homing logicSam Ward
2011-05-11Added G28 homing code.Sam Ward
Re factored main movement routines
2011-05-11Cleaning up code formattingSam Ward
2011-05-11Moved function definitions into separate .h file for readability.Sam Ward
2011-05-11Merge branch 'master' of https://github.com/kliment/SprinterSam Ward
2011-05-11extra CRLFSam Ward
2011-05-11Added M201 and M202 to set max acceleration for respectively print and ↵Emanuele Caruso
travel moves
2011-05-11Dramatically decreased GCODE write time to SDEmanuele Caruso
2011-05-07Added M84 Timeout for steppers:Christopher Keller
Changed the comment to reflect the updated usage Old functionality remains unchanged M84 disables steppers after finishing previous move. Added functionality: M84 S<seconds> adds an inactivity timeout, after which the steppers will be disabled. If S0, then no timeout (default)
2011-05-04Fixed deceleration bug for constant accelerationEmanuele Caruso
2011-05-04Added constant acceleration option (aka speed ramp), enabled by defaultEmanuele Caruso
2011-05-04Added max z feedrate configuration value, default to 120 mm/min. Solution ↵Emanuele Caruso
suggested by cakeller98
2011-05-04Made exponential acceleration optional with a #define in configuration.hEmanuele Caruso
2011-05-03Make sure M190 does nothing if no heated bed present. Fix report format to ↵kliment
match repsnapper expectations
2011-05-03Added support for M190 - Wait for heated bed to reach target temp.Sam Ward
Amended Gcode descriptions at top of file.
2011-05-03Merge pull request #4 from ScribbleJ/master.kliment
Makefile support to enable upload/compile without the Arduino IDE.
2011-05-02Merge pull request #6 from kludgineer/master.kliment
Added code for M114, Display current position
2011-05-02Edited Tonokip_Firmware/Tonokip_Firmware.pde via GitHubkludgineer
2011-05-03Added comments for M28, M29 to list of implemented GcodesSam Ward
2011-05-03Added Makefile and declared required functions in .pde to support it working.Christopher Jansen
Tested on various configs with arduinio-0022. Note you have to edit the first few lines of the Makefile to match your config.
2011-05-02Merge remote branch 'origin/master'Emanuele Caruso
2011-05-01Added watchdog aand minimal temp for greater safety in the case of a ↵kliment
disconnected thermistor
2011-05-01Added configuration value for absolute delay microseconds, default to 1. ↵Emanuele Caruso
This seems to work better than STEP_DELAY_RATIO and is enabled by default
2011-05-01Added configuration parameter for delaying steps, STEP_DELAY_RATIO.Emanuele Caruso
This should be manually enabled in configuration.h if you are experiencing missing steps. Please be aware that enabling it may also prevent your motor from reaching the nominal speed.
2011-04-30Adding Support for SanguinololuTommy Cheng
2011-04-29Adding basic capabilities (M115) implementationNils
2011-04-28Fix missing { causing compile errorkliment
2011-04-27Merge branch 'master' of git@github.com:kliment/Klimentkipkliment
2011-04-27Added PWM control to fan pin, added smoothing code for erratic gen6 temp ↵kliment
readings
2011-04-25Added separate acceleration configuration parameter for travel movesEmanuele Caruso
2011-04-22Merge branch 'minconstspeed'Emanuele Caruso
2011-04-22Added min constant speed units configuration value for acceleration. ↵Emanuele Caruso
Disabled manage_heating while accelerating or decelerating. Updated acceleration configuration values to better default values.
2011-04-22Do not include max6675 functions if they are not in usekliment
2011-04-22Fix pin definitions for MAX6675 (SS)kliment
2011-04-22Gregfrost thermocouple support - still needs minor cleanupkliment
2011-04-19Merge remote branch 'upstream/master'Emanuele Caruso
2011-04-19Fixed speed bug. Before updating, read the WARNING below!Emanuele Caruso
WARNING: This version fixes a bug that caused speeds to be lower than what set in GCODE. So before attempting any print, you will have to check all your axis max speed, including the extruder retract speed. Not following this guidelines can seriously damage your printer.
2011-04-19Initialize temp variables correctlykliment
2011-04-19Added some rough documentation to linear_move()Emanuele Caruso
2011-04-15Add support for Gen6, conditional SD and heated bed code, and mendelparts ↵kliment
thermistor table
2011-04-14Fix interval calculation (thanks to BenJackson)kliment
2011-04-13Terminate current move after endstop hit - avoids lockupkliment
2011-04-12Fix kill function to disable axes and heaters like it should.kliment
2011-04-11Fix M28 to work with checksums - thanks to jeanmarckliment
2011-04-10Experimental PID support. Use with caution.kliment
2011-04-08Fixed acceleration bug: thank you jeanmarc for pointing that out!Emanuele Caruso
2011-04-08Merge remote branch 'origin/master'Emanuele Caruso
2011-04-08Improved acceleration algorithm: now you can set minimum feedrate speedEmanuele Caruso
2011-04-07Remove checksum from M28 and M23 commandskliment
2011-04-07Fixed acceleration algorithm. Added deceleration. Added configuration ↵Emanuele Caruso
setting for acceleration in configuration.h