- Mar 24, 2016
-
-
Scott Lahteine authored
-
Scott Lahteine authored
-
Scott Lahteine authored
Toshiba Flash Air Wifi SD card support
-
Scott Lahteine authored
Enabling servo usage on boards with PWM current control
-
Scott Lahteine authored
Use arduino programming protocol by default for sanguino
-
Scott Lahteine authored
Fix MELZI_MAKR3D to use correct motherboard
-
Scott Lahteine authored
M120/M121 also set endstops non-homing state
-
Scott Lahteine authored
-
Scott Lahteine authored
Add Menu Items to initiate M303
-
Scott Lahteine authored
-
WPBack authored
Fixes for #3189 Setting a temp is still missing
-
WPBack authored
Adds the parameter U to M303. If U1 is included , it will use the PID-values from the auto-tune.
-
Scott Lahteine authored
Follow-up the PR #3082, etc
-
Scott Lahteine authored
Add support for Printrboard RevF
-
Scott Lahteine authored
Make DISABLE_INACTIVE_X, etc., true if missing
-
Scott Lahteine authored
Send position updates to RH
-
Scott Lahteine authored
Patch minor spelling error in cn, en, gl language file headings
-
Scott Lahteine authored
-
Scott Lahteine authored
Fix lost undef Y_MAX_PIN in pins.h
-
Scott Lahteine authored
Change link to the document
-
Scott Lahteine authored
Fix Fan KICKSTART
-
- Mar 23, 2016
-
-
AnHardt authored
Send position updates to RH where RH can not know the end position. For example after G28 RepetierHost assumes to be at the homing-point, but with a servo probe we are much higher. Now the RH-software-endstops will prevent us from going down (if activated). With this patch the internal position of RH is updated with `current_position[]`.
-
AnHardt authored
-
AnHardt authored
Sorting ot what else belongs to what if was not so hard. But the static `ms = ms = millis();` was a bit surpising.
-
Scott Lahteine authored
Patch-up to commits for Kana #3203. Closes #3203.
-
esenapaj authored
-
Scott Lahteine authored
Extend .gitignore
-
Scott Lahteine authored
Improve Travis CI test
-
Scott Lahteine authored
-
Scott Lahteine authored
- Add shell scripts to help with managing configs - Clean up .travis.yml file by using shell scripts - Don’t download “astyle” – not needed and delays Travis results
-
- Mar 22, 2016
-
-
AnHardt authored
-
Scott Lahteine authored
Call buzz() directly from M428
-
AnHardt authored
-
jbrazio authored
-
esenapaj authored
documentation/LCDLanguageFont.md moved to http://www.marlinfirmware.org/ at commit 12d09837, but http://www.marlinfirmware.org/ isn't working.
-
- Mar 21, 2016
-
-
PheiPheiPhei authored
Enabling servo usage on boards with PWM current control timer5 is used by some boards like the Mini Rambo for controlling motor current via PWM, see stepper.cpp. ```cpp #ifdef MOTOR_CURRENT_PWM_XY_PIN pinMode(MOTOR_CURRENT_PWM_XY_PIN, OUTPUT); pinMode(MOTOR_CURRENT_PWM_Z_PIN, OUTPUT); pinMode(MOTOR_CURRENT_PWM_E_PIN, OUTPUT); digipot_current(0, motor_current_setting[0]); digipot_current(1, motor_current_setting[1]); digipot_current(2, motor_current_setting[2]); //Set timer5 to 31khz so the PWM of the motor power is as constant as possible. (removes a buzzing noise) TCCR5B = (TCCR5B & ~(_BV(CS50) | _BV(CS51) | _BV(CS52))) | _BV(CS50); #endif } ``` Using the same timer for controlling servos results in loss of motor control. So use timer4/3 for those boards instead. [See discussion here.](http://shop.prusa3d.com/forum/software-f13/enabling-auto-leveling-in-firmware-t416-s40.html)
-
Scott Lahteine authored
Update the Hephestos 2 default config
-
jbrazio authored
-
Scott Lahteine authored
fix spelling
-