From 295436b24dd6728f5281ddb9c83b9fd0f15d2269 Mon Sep 17 00:00:00 2001 From: Rob Giseburt Date: Mon, 27 Nov 2017 13:34:00 -0600 Subject: [PATCH] Minor changes (comments, etc) --- g2core/cycle_homing.cpp | 2 +- g2core/json_parser.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/g2core/cycle_homing.cpp b/g2core/cycle_homing.cpp index 1c13a3f1..1f005176 100644 --- a/g2core/cycle_homing.cpp +++ b/g2core/cycle_homing.cpp @@ -523,4 +523,4 @@ static int8_t _get_next_axis(int8_t axis) { return (-1); // done #endif // (HOMING_AXES <= 4) -} \ No newline at end of file +} diff --git a/g2core/json_parser.h b/g2core/json_parser.h index 4bef7817..9b0e7e1b 100644 --- a/g2core/json_parser.h +++ b/g2core/json_parser.h @@ -48,9 +48,9 @@ typedef enum { JV_CONFIGS, // [3] returns footer, messages, config commands JV_LINENUM, // [4] returns footer, messages, config commands, gcode line numbers if present JV_VERBOSE, // [5] returns footer, messages, config commands, gcode blocks - JV_EXCEPTIONS, // [6] returns only on messages, configs, and non-zero status - JV_STATUS, // [7] returns status and any messages in abbreviated format - JV_STATUS_COUNT, // [8] returns status, count and messages in abbreviated format + JV_EXCEPTIONS, // (unused) [6] returns only on messages, configs, and non-zero status + JV_STATUS, // (unused) [7] returns status and any messages in abbreviated format + JV_STATUS_COUNT, // (unused) [8] returns status, count and messages in abbreviated format JV_MAX_VALUE } jsonVerbosity;