Add M114_DETAIL to Configuration_adv.h

This commit is contained in:
Scott Lahteine
2017-11-14 00:03:17 -06:00
parent 95ea43bde4
commit 009e3a7aa7
35 changed files with 138 additions and 36 deletions

View File

@ -26,7 +26,7 @@
#include "../../module/motion.h"
#include "../../module/stepper.h"
#ifdef M114_DETAIL
#if ENABLED(M114_DETAIL)
void report_xyze(const float pos[XYZE], const uint8_t n = 4, const uint8_t precision = 3) {
char str[12];
@ -111,7 +111,7 @@
*/
void GcodeSuite::M114() {
#ifdef M114_DETAIL
#if ENABLED(M114_DETAIL)
if (parser.seen('D')) {
report_current_position_detail();
return;