- Feb 28, 2016
-
-
AnHardt authored
Refresh previous_cmd_ms during run_z_probe() to prevent: stepper shutdown for expired DEFAULT_STEPPER_DEACTIVE_TIME and extrudes for expired EXTRUDER_RUNOUT_SECONDS (https://github.com/MarlinFirmware/MarlinDev/issues/238)
-
AnHardt authored
-
AnHardt authored
Exactly the same - copy/paste.
-
AnHardt authored
Replaced displaying "---" instead of the value of a coordinate when unhomed or with reduced precision with blinking the coordinate-prefix-character ('X','Y','Z'). For "unhomed" a '?' is shown every second second - until that axis is homed. The value displayed is, as before the "---" where displayed, the relative to the reset position coordinate value. When the axis stepper was disabled, now we can display a hint on that, by showing a blinking ' ' instead of the axis letter, when WARN_REDUCED_ACCURACY is defined. I suppose the code itself is here the better documentation. A '+/-' character is in non of our charsets so i decided for a '?' for now to reduce the work. There is no additional space on the displays one could use to display the information, so replacing something is the only option. As the axis letters are totally redundant with their positions on the display they contain the least information. So my decision was to overwrite them.
-
AnHardt authored
In the wait loops of M109 M190 idle() is called, what checks stepper_inactive_time against previous_cmd_ms. Because we can be several minutes inside the loop, resetting previous_cmd_ms only outside the loop caused stepper shutdowns. The name of previous_cmd_ms does not really reflect its use. It's set not only when a new command was received or executed but also in many of the movement routines. For that the little extension of using it during the wait will (hopefully) not hurt. # Conflicts: # Marlin/Configuration_adv.h
-
AnHardt authored
Make stepper shutdown after inactivity dependent on a new set of #defines. DISABLE_INACTIV_X DISABLE_INACTIV_Y DISABLE_INACTIV_Z DISABLE_INACTIV_E And make exemplaric Configuration. Names can be discussed. This makes the disabling of the steppers independent from the DISABLE_? settings witch shut down the steppers immediately.
-
AnHardt authored
Introduce additional variable axis_homed to replace axix_known_position when the coordinate display should indicate the axis is not homed. This is to distinguish between "not homed" and "inexact position possible because stepper was disabled". # Conflicts: # Marlin/ultralcd_implementation_hitachi_HD44780.h solved
-
AnHardt authored
Implement and test blinking for char-lcds # Conflicts: # Marlin/ultralcd_implementation_hitachi_HD44780.h solved
-
Scott Lahteine authored
Fix GCode handling of spaces between command letter and first digit
-
- Feb 27, 2016
-
-
Scott Lahteine authored
K8200: sample config back in sync
-
Scott Lahteine authored
-
- Feb 25, 2016
-
-
Scott Lahteine authored
Fix: current_command_args contains command
-
- Feb 24, 2016
-
-
CONSULitAS authored
@thinkyhead Hi Scott, your code from a0f362c7@thinkyhead is great, but you forgot to skip the command. Symptom `M117 Test`shows `M117 Test` on LCD instead of `Test`. see also https://github.com/MarlinFirmware/Marlin/commit/a0f362c735401ebbcd95de3f 6f8e3c2f17ecc770 lines 941, 2851 and so on Greetings and welcome back Jochen
-
Scott Lahteine authored
Remove obsolete STEPS_MM_E setting
-
- Feb 23, 2016
-
-
Scott Lahteine authored
-
- Feb 21, 2016
-
-
CONSULitAS authored
* Configuration.h: * updated header comment * new UUID feature used * sync to default config * typos fixed * changes better documented * reflect change in SDSUPPORT feature * Configuration_adv.h * updated header comment * thermal protection tuned to work with K8200 * homing tuned * sync to default config * typos fixed * changes better documented * reflect change in LCD features * use long filenames * use Watchdog * use Babystepping * use Auto Filament Change
-
- Feb 19, 2016
-
-
Scott Lahteine authored
more suitable display format for delta printer
-
Scott Lahteine authored
Repair N in ADVANCED_OK
-
esenapaj authored
Rc bug fix
-
- Feb 18, 2016
-
-
Scott Lahteine authored
Replace the "ok" in M280, M301, M304, M851 with output not including …
-
Scott Lahteine authored
Drop the experimental Configurator
-
Scott Lahteine authored
Sanity-check deprecated options replaced by SPI_SPEED
-
Scott Lahteine authored
Use next open E connector for Y2/Z2
-
Scott Lahteine authored
Remove references to marlinfirmware.org
-
- Feb 17, 2016
-
-
Scott Lahteine authored
-
Scott Lahteine authored
- Include aligned comment about new SDSUPPORT behavior
-
Scott Lahteine authored
Fix handling of spaces in GCode
-
Scott Lahteine authored
Development moved to https://github.com/thinkyhead/MarlinConfigurator
-
Scott Lahteine authored
The domain is gone and doesn’t redirect, so for now show no URL on the boot screen.
-
Scott Lahteine authored
Rename fpos_t to avoid libc conflict
-
Scott Lahteine authored
Fix AUTOTEMP documentation in configs
-
- Feb 11, 2016
-
-
Scott Lahteine authored
-
- Feb 10, 2016
-
-
Scott Lahteine authored
-
Scott Lahteine authored
-
Scott Lahteine authored
-
Scott Lahteine authored
Addresses issue #2715
-
- Feb 09, 2016
-
-
AnHardt authored
Send the correct line number. If no N was in the command - non't send an N.
-
AnHardt authored
Replace the "ok" in M280, M301, M304, M851 with output not including an "ok" to avoid senting two "ok"s for a single g-code. Doing the same for M105 would break the input filters of the hosts. For M105 the other "ok" is omitted.
-
- Feb 07, 2016