Merge pull request #493 from alpharesearch/edge
If variable spindle is defined print S value via $G command.
This commit is contained in:
commit
d630d4a4cc
5
report.c
5
report.c
@ -330,6 +330,11 @@ void report_gcode_modes()
|
|||||||
|
|
||||||
printPgmString(PSTR(" F"));
|
printPgmString(PSTR(" F"));
|
||||||
printFloat_RateValue(gc_state.feed_rate);
|
printFloat_RateValue(gc_state.feed_rate);
|
||||||
|
|
||||||
|
#ifdef VARIABLE_SPINDLE
|
||||||
|
printPgmString(PSTR(" S"));
|
||||||
|
printFloat_RateValue(gc_state.spindle_speed);
|
||||||
|
#endif
|
||||||
|
|
||||||
printPgmString(PSTR("]\r\n"));
|
printPgmString(PSTR("]\r\n"));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user