From fb5a32d3448928ae4bb9940a029e746bb50082e3 Mon Sep 17 00:00:00 2001 From: Markus Hitter Date: Fri, 11 May 2012 16:27:52 +0200 Subject: [PATCH] Turn the PSU on before asking the endstops. --- gcode_process.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gcode_process.c b/gcode_process.c index 9d41e89..9c0523b 100644 --- a/gcode_process.c +++ b/gcode_process.c @@ -730,6 +730,7 @@ void process_gcode_command() { case 200: //? --- M200: report endstop status --- //? Report the current status of the endstops configured in the firmware to the host. + power_on(); #if defined(X_MIN_PIN) sersendf_P(PSTR("x_min:%d "), x_min()); #endif