summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-06-23Merge pull request #191 from MrAlvinTesting/patch-1kliment
Add ATMega 644P SMD pinout as comment
2012-06-23Update masterMrAlvinTesting
2012-06-12Update README to Arduino Version 0023midopple
2012-06-11Error with Command M201, when this Command is use the same Values are ↵midopple
written to maximum Feedrate.
2012-06-02Bug in heater.cpp --> Thermistor type 3, disconnecting thermistor yields ↵midopple
temp -20, and hotend gets switched to full power
2012-05-24Wrong declaration for Variable min_time_before_dir_change midopple
should be const long
2012-05-16If a small move is drop and the next move is retract the speed is wrong ↵midopple
calculated see https://github.com/kliment/Sprinter/issues/170 thanks to jschleic
2012-05-01Merge pull request #167 from OhmEye/masterkliment
Fix compile error if SD_FAST_XFER_AKTIV is on and PID is off
2012-04-30Bug: turn on SD_FAST_XFER_AKTIV and compilation fails if PID isOhmEye
enabled. Fix: If SD_FAST_XFER_AKTIV is defined, fast_xfer() only declares g_heater_pwm_val if PIDTEMP is defined, but later assigns g_heater_pwm_val=0 regardless whether PIDTEMP is defined or not. If PIDTEMP is undefined, g_heater_pwm_val is undeclared at compile time and generates the appropriate error. I solved by not using g_heater_pwm_val if PIDTEMP is undefined (and therefor undeclared.) Also, the extern declaration was as an int, when g_heater_pwm_val is defined as a volatile unsigned char. This caused a duplicate declaration error, which was solved by changing the declaration in fast_xfer() to match the definition. I didn't dig deeper to try to understand if the mismatch was intentional or test operation other than verify the compile errors no longer occur.
2012-03-30Command M106 / M107 for control the fan can use PWM midopple
New function to check the used PWM pins
2012-03-30Command M106 / M107 for control the fan can use PWM midopple
New function to check the used PWM pins
2012-03-28Merge pull request #157 from triffid/fix-orderkliment
fix enable_endstops being used before its definition
2012-03-28fix enable_endstops being used before its definitionMichael Moon
2012-03-28add my namemidopple
2012-03-27Set the defaults for the heart of the sun...uhm, set default board to 33Kliment Yanev
2012-03-27Merge pull request #156 from midopple/experimentalkliment
wrong char in configuration.h
2012-03-23First char '#' was unicode so linux give an compile errormidopple
2012-03-19Merge pull request #155 from midopple/experimentalkliment
Try to merge fixes from Master into Experimental
2012-03-19Fixes virtual endstops when using mixed physical endstop positions.midopple
Thanks to ticking
2012-03-19Merge commit pins.h from master to experimentellmidopple
Conflicts: Sprinter/pins.h
2012-03-19Merge pull request #154 from midopple/experimentalkliment
AT90USB128x / Speedtable with F_CPU / fix include Closes #145
2012-03-19Version 1.3.11Tmidopple
- fix for broken include in store_eeprom.cpp --> Thanks to kmeehl (issue #145) - Make fastio & Arduino pin numbering consistent for AT90USB128x. --> Thanks to lincomatic - Select Speedtable with F_CPU - Use same Values for Speedtables as Marlin
2012-03-19fix for broken include in store_eeprom.cppmidopple
Thanks to kmeehl
2012-03-19Make fastio & Arduino pin numbering consistent for AT90USB128x.midopple
Thanks to lincomatic
2012-03-18Merge pull request #152 from lincomatic/masterkliment
Make fastio & Teensyduino Pin Numbering consistent with each other for AT90USB128x
2012-03-17Make fastio & Arduino pin numbering consistent for AT90USB128xlincomatic
2012-03-14Merge pull request #150 from midopple/experimentalkliment
Fix gen7 support, fix bug in ENDSTOPS_ONLY_FOR_HOMING
2012-03-14ENDSTOPS_ONLY_FOR_HOMING Option ignore Endstop always --> fault is cleared midopple
New Version V1.3.10T
2012-03-13Add info to GEN7 Pinsmidopple
2012-03-13Merge pull request #4 from metzench/patch-1midopple
Update pins.h for gen7
2012-03-13Update pins.h for gen7, working setup for 20MHzChristian Metzen
2012-03-13Info about GEN7 @ 20Mhz midopple
right Fuses settings for Bootloader
2012-03-12calculate feedrate without extrude before planner block is setmidopple
2012-03-10New Board --> GEN7 @ 20 Mhzmidopple
Select in configuration.h --> #define MOTHERBOARD 71 New Speedtable for 16 Mhz and 20 Mhz
2012-03-05Merge pull request #148 from midopple/experimentalkliment
Slowdown Function when Plannerpuffer is low
2012-03-04Merge commit 'from changwoo/arduino-1.0-compatibility' into experimentalmidopple
2012-03-04Merge pull request #147 from changwoo/arduino-1.0-compatibilitykliment
Arduino 1.0 compatibility for experimental
2012-03-04Move SLOWDOWN Funktion up, at the current position does not workmidopple
2012-03-05Update README on Arduino v1 supportChangwoo Ryu
2012-03-05Correct SD for Arduino 1.0 compatibilityChangwoo Ryu
With Arduino 1.0 Print class: - write() should return, and - print() with a uint_8 or int_8 character argument does not call print(char) anymore. So character argument should be casted to 'char' explicitly.
2012-02-24Merge pull request #144 from midopple/experimentalkliment
Fix Comment, Optimize, remove Unused code, fix makefile
2012-02-24Merge commit '89180de4bfd598298f4d5e77889c57a250e35084' into experimentalmidopple
Conflicts: Sprinter/Makefile
2012-02-24If a line starts with ';', it is ignored but comment_mode is reset.midopple
A ';' inside a line ignores just the portion following the ';' character. The beginning of the line is still interpreted. --> Tanks to jschleic Same fix for SD Card, testet and work (midopple)
2012-02-24Version 1.3.07Tmidopple
- Optimize Variable Size (faster Code) --> heater.cpp - Remove unused Code from Interrupt --> faster ~ 22 us per step - Replace abs with fabs --> Faster and smaler
2012-02-24Remove unused function "st_set_position"midopple
2012-02-24Add "store_eeprom.cpp" to makefilemidopple
2012-02-24fix applet/core.a: not found --> Thanks to triffidmidopple
2012-02-24Changhe PWM Value from INT to unsigned char, is faster for interruptmidopple
2012-02-24compile experimental using the MakefileJoachim Schleicher
* add forward declarations in Sprinter.h * add new files heater.cpp and arc_func.cpp to Makefile
2012-02-23Merge pull request #142 from jschleic/fix-comment_modekliment
fix comment mode.