Age | Commit message (Collapse) | Author |
|
|
|
additional dropsegments test
|
|
calculated
see https://github.com/kliment/Sprinter/issues/170
thanks to jschleic
|
|
|
|
- M303 - PID relay autotune possible
- G4 Wait until last move is done
|
|
Bug: turn on SD_FAST_XFER_AKTIV and compilation fails if PID is
|
|
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.
|
|
|
|
- Use extra extruder feedrate limit for reverse moves, and also the first forward move after a reverse
|
|
|
|
|
|
- M206 - set additional homeing offset (Thank to se5a for this idea)
(First Version is without saving to EEPROM)
- Option for minimum FAN start speed --> #define MINIMUM_FAN_START_SPEED 50 (set it to zero to deaktivate)
|
|
endstop is hit
|
|
- use Feedratefaktor only when Extruded lenght > 0
- M106 / M107 can drive the FAN with PWM + Port check for not using Timer 1
- New Option --> FAN_SOFT_PWM, with this option the FAN PWM can use every digital I/O (PWM with 500 hz)
- Added M93 command. Sends current steps for all axis.
|
|
Thanks to hurzl
|
|
Added M93 command - sends current steps per unit for all axis
|
|
|
|
Command M106 / M107
|
|
New function to check the used PWM pins
|
|
New function to check the used PWM pins
|
|
|
|
|
|
Thanks to Erik van der Zalm
|
|
|
|
|
|
Thanks to ticking
|
|
Conflicts:
Sprinter/pins.h
|
|
- 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
|
|
Thanks to kmeehl
|
|
Thanks to lincomatic
|
|
|
|
New Version V1.3.10T
|
|
|
|
|
|
|
|
Select in configuration.h --> #define MOTHERBOARD 71
New Speedtable for 16 Mhz and 20 Mhz
|
|
|
|
|
|
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.
|
|
Conflicts:
Sprinter/Makefile
|
|
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)
|
|
- Optimize Variable Size (faster Code) --> heater.cpp
- Remove unused Code from Interrupt --> faster ~ 22 us per step
- Replace abs with fabs --> Faster and smaler
|
|
|
|
|
|
|
|
|
|
* add forward declarations in Sprinter.h
* add new files heater.cpp and arc_func.cpp to Makefile
|
|
Closes #140.
If a line starts with ';', it is ignored but comment_mode is reset.
A ';' inside a line ignores just the portion following the ';' character.
The beginning of the line is still interpreted.
Probably a similar fix is necessary for the SDSUPPORT part; I cannot
test that part without an SD-shield.
|
|
* add forward declarations in Sprinter.h
* add new files heater.cpp and arc_func.cpp to Makefile
|
|
correct declaration: const short temptable_4[NUMTEMPS_4][2]
|