Move M119-M121 to cpp

This commit is contained in:
Scott Lahteine
2017-09-17 00:46:24 -05:00
parent 379f16558e
commit eef4a54778
4 changed files with 16 additions and 27 deletions

View File

@ -20,7 +20,14 @@
*
*/
#include "../gcode.h"
#include "../../module/endstops.h"
/**
* M119: Output endstop states to serial output
*/
void gcode_M119() { endstops.M119(); }
void GcodeSuite::M119() {
endstops.M119();
}