Skip to content

Commit

Permalink
Fix home issue
Browse files Browse the repository at this point in the history
Possible fix for MarlinFirmware#7 and MarlinFirmware#8
  • Loading branch information
davidramiro authored and Christoph-D committed Jun 1, 2020
1 parent 010a3c3 commit e542f79
Show file tree
Hide file tree
Showing 9 changed files with 23,676 additions and 7,894 deletions.
5,266 changes: 2,633 additions & 2,633 deletions Marlin-AI3M-181231-TMC2208.hex → Marlin-AI3M-190102-TMC2208.hex

Large diffs are not rendered by default.

5,266 changes: 2,633 additions & 2,633 deletions Marlin-AI3M-181231-TMC2208_reversed.hex → Marlin-AI3M-190102-TMC2208_reversed.hex

Large diffs are not rendered by default.

5,242 changes: 2,621 additions & 2,621 deletions Marlin-AI3M-181231-stock_drivers.hex → Marlin-AI3M-190102-stock_drivers.hex

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Marlin/AnycubicTFT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ void AnycubicTFTClass::HandleSpecialMenu()
SpecialMenu=true;
} else if (strcmp(SelectedDirectory, "<auto tune hotend pid>")==0) {
SERIAL_PROTOCOLLNPGM("Special Menu: Auto Tune Hotend PID");
enqueue_and_echo_commands_P(PSTR("M106 S178\nM303 E0 S210 C6 U1"));
enqueue_and_echo_commands_P(PSTR("M106 S204\nM303 E0 S210 C6 U1"));
} else if (strcmp(SelectedDirectory, "<auto tune hotbed pid>")==0) {
SERIAL_PROTOCOLLNPGM("Special Menu: Auto Tune Hotbed Pid");
enqueue_and_echo_commands_P(PSTR("M303 E-1 S60 C6 U1"));
Expand All @@ -212,7 +212,7 @@ void AnycubicTFTClass::HandleSpecialMenu()
enqueue_and_echo_commands_P(PSTR("M500"));
} else if (strcmp(SelectedDirectory, "<load fw defaults>")==0) {
SERIAL_PROTOCOLLNPGM("Special Menu: Load FW Defaults");
enqueue_and_echo_commands_P(PSTR("M501"));
enqueue_and_echo_commands_P(PSTR("M502"));
} else if (strcmp(SelectedDirectory, "<preheat bed>")==0) {
SERIAL_PROTOCOLLNPGM("Special Menu: Preheat Bed");
enqueue_and_echo_commands_P(PSTR("M140 S60"));
Expand Down
6 changes: 3 additions & 3 deletions Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@
* Override with M201
* X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
*/
#define DEFAULT_MAX_ACCELERATION { 2000, 2000, 60, 10000 }
#define DEFAULT_MAX_ACCELERATION { 3000, 2000, 60, 10000 }

/**
* Default Acceleration (change/s) change = mm/s
Expand All @@ -647,8 +647,8 @@
* M204 T Travel Acceleration
*/
#define DEFAULT_ACCELERATION 1200 // X, Y, Z and E acceleration for printing moves
#define DEFAULT_RETRACT_ACCELERATION 1500 // E acceleration for retracts
#define DEFAULT_TRAVEL_ACCELERATION 2000 // X, Y, Z acceleration for travel (non printing) moves
#define DEFAULT_RETRACT_ACCELERATION 3000 // E acceleration for retracts
#define DEFAULT_TRAVEL_ACCELERATION 3000 // X, Y, Z acceleration for travel (non printing) moves

/**
* Default Jerk (mm/s)
Expand Down
2 changes: 1 addition & 1 deletion Marlin/Configuration_adv.h
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@

// If you want endstops to stay on (by default) even when not homing
// enable this option. Override at any time with M120, M121.
//#define ENDSTOPS_ALWAYS_ON_DEFAULT
#define ENDSTOPS_ALWAYS_ON_DEFAULT

// @section extras

Expand Down
Loading

0 comments on commit e542f79

Please sign in to comment.