Skip to content

Commit

Permalink
3.0.4 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
TheZeroBeast committed Jun 8, 2020
1 parent f61d578 commit f577f30
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// config.h - main configuration file


#define FW_VERSION 303 // example: 103 means version 1.0.3
#define FW_BUILDNR 364 // number of commits in 'master'
#define FW_VERSION 304 // example: 103 means version 1.0.3
#define FW_BUILDNR 365 // number of commits in 'master'

#define WAKE_TIMER 300000 // 5m

Expand Down
4 changes: 4 additions & 0 deletions src/mmctl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,13 @@ bool feed_filament(void)
break;
} else {
if (_c < 1) { // Two attempt to load then give up
delay(10);
moveSmooth(AX_PUL, filament_lookup_table[3][filament_type[active_extruder]], filament_lookup_table[5][filament_type[active_extruder]], false, false, GLOBAL_ACC);
fixTheProblem();
engage_filament_pulley(true);
} else {
delay(10);
moveSmooth(AX_PUL, filament_lookup_table[3][filament_type[active_extruder]], filament_lookup_table[5][filament_type[active_extruder]], false, false, GLOBAL_ACC);
engage_filament_pulley(false);
_loaded = false;
break;
Expand Down

0 comments on commit f577f30

Please sign in to comment.