Merge pull request #4257 from esenapaj/Follow-up-the-PR-#4253-etc

Follow-up the PR #4253 (Runout Sensor without SD Card, Print Timer support in M104), etc
This commit is contained in:
Scott Lahteine 2016-07-10 16:59:24 -07:00 committed by GitHub
commit 5b87deebb6
3 changed files with 18 additions and 12 deletions

View File

@ -771,7 +771,10 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
// Print job timer // Print job timer
// //
// Enable this option to automatically start and stop the // Enable this option to automatically start and stop the
// print job timer when M104 and M109 commands are received. // print job timer when M104/M109/M190 commands are received.
// M104 (extruder without wait) - high temp = none, low temp = stop timer
// M109 (extruder with wait) - high temp = start timer, low temp = stop timer
// M190 (bed with wait) - high temp = start timer, low temp = none
// //
// In all cases the timer can be started and stopped using // In all cases the timer can be started and stopped using
// the following commands: // the following commands:

View File

@ -790,7 +790,10 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the lo
// Print job timer // Print job timer
// //
// Enable this option to automatically start and stop the // Enable this option to automatically start and stop the
// print job timer when M104 and M109 commands are received. // print job timer when M104/M109/M190 commands are received.
// M104 (extruder without wait) - high temp = none, low temp = stop timer
// M109 (extruder with wait) - high temp = start timer, low temp = stop timer
// M190 (bed with wait) - high temp = start timer, low temp = none
// //
// In all cases the timer can be started and stopped using // In all cases the timer can be started and stopped using
// the following commands: // the following commands: