- Mar 20, 2015
-
-
Scott Lahteine authored
codepos not used in gcode_M28()
-
- Mar 19, 2015
-
-
Scott Lahteine authored
Reduce size of menu code
-
Scott Lahteine authored
-
Scott Lahteine authored
In the new method we pass the character that should be used for selected state, not the character to print always.
-
Scott Lahteine authored
- Pass selected state directly to lcd_implementation_mark_as_selected - Rename sel function parameter - Include a minor fix for SdBaseFile.h
-
Scott Lahteine authored
Get upstream changes
-
alexborro authored
When one hit "Stop Print" option in LCD menu, the command buffer was not cleared. The printer keep moving until the buffer has been emptied. Actually I could not clear the command buffer as well.. I don't know why, it doesnt work as expected. I need to implement a routine inside Stepper ISR to handle such situation.
-
AnHardt authored
Saves one addition. Needs one pointer on the stack. Don't know if this is a go trade.
-
Scott Lahteine authored
Remove 6x9 font
-
Scott Lahteine authored
Decrease KILL_DELAY
-
Scott Lahteine authored
Negative times are unlikly
-
Scott Lahteine authored
optional parameters must be named when ignoring order
-
Scott Lahteine authored
lcd_control_retract_menu() is conditional.
-
Scott Lahteine authored
lcd_autostart_sd() has two conditions.
-
Scott Lahteine authored
delta[3] not used when DELTA not defined.
-
Scott Lahteine authored
G4 could wait for an undefined time
-
- Mar 18, 2015
-
-
alexborro authored
-
alexborro authored
-
AnHardt authored
Shoot in the dark.
-
AnHardt authored
Got: Marlin_main.cpp:2567: warning: unused variable 'codepos' Needs revision. Don't now how this should look like.
-
AnHardt authored
Got: Marlin_main.cpp:1689: warning: 'codenum' may be used uninitialized in this function And indeed codenum is undefined when no parameter is given.
-
AnHardt authored
got: Marlin_main.cpp:387: warning: 'delta' defined but not used Compiles cleaner when definition is removed.
-
AnHardt authored
got: ultralcd.cpp:408: warning: 'void lcd_autostart_sd()' defined but not used
-
AnHardt authored
Got: ultralcd.cpp:64: warning: 'void lcd_control_retract_menu()' declared 'static' but never defined
-
AnHardt authored
While bunting an other bug I stumbled across: ultralcd.cpp:1250: warning: comparison between signed and unsigned integer expressions Changed to the type of lcd_next_update_millis.
-
AnHardt authored
Users hat to press kill-button for unexpexted lon times. See #1593
-
Wurstnase authored
-
- Mar 17, 2015
-
-
alexborro authored
fix macro
-
wurstnase authored
-
AnHardt authored
with sources in /fonts
-
Scott Lahteine authored
Delta auto bed level (Updated PR)
-
- Mar 16, 2015
-
-
alexborro authored
The Check Endstop logic must be: if (current_block->steps_x != current_block->steps_y || (TEST(out_bits, X_AXIS) == TEST(out_bits, Y_AXIS))) if (TEST(out_bits, X_HEAD)) not if (TEST(out_bits, X_HEAD) && (current_block->steps_x != current_block->steps_y || (TEST(out_bits, X_AXIS) == TEST(out_bits, Y_AXIS)))) Same applies for Y axis.
-
AnHardt authored
in dogm_lcd_implementation.h by using standard font and shifting down temperature displays by one pixel Saves 2300 bytes.
-
maverikou authored
-
maverikou authored
-
maverikou authored
-
maverikou authored
Conflicts: Marlin/Marlin_main.cpp
-
Scott Lahteine authored
Move TOPO_ORIGIN define to Configuration.h
-
Scott Lahteine authored
- Compare pr_char to space - Fewer calls to lcd_strlen
-
Scott Lahteine authored
- Get rid of _selected functions, passing selected state instead
-