2017-05-20 08:03:08 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-11-03 06:16:37 +00:00
|
|
|
#pragma once
|
2017-05-20 08:03:08 +00:00
|
|
|
|
|
|
|
/**
|
2017-09-06 11:28:31 +00:00
|
|
|
* parser.h - Parser for a GCode line, providing a parameter interface.
|
2017-05-20 08:03:08 +00:00
|
|
|
* Codes like M149 control the way the GCode parser behaves,
|
|
|
|
* so settings for these codes are located in this class.
|
|
|
|
*/
|
|
|
|
|
2017-09-06 11:28:31 +00:00
|
|
|
#include "../inc/MarlinConfig.h"
|
2017-05-20 08:03:08 +00:00
|
|
|
|
|
|
|
//#define DEBUG_GCODE_PARSER
|
2018-01-29 22:45:44 +00:00
|
|
|
#if ENABLED(DEBUG_GCODE_PARSER)
|
|
|
|
#include "../libs/hex_print_routines.h"
|
|
|
|
#endif
|
2017-05-20 08:03:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GCode parser
|
|
|
|
*
|
|
|
|
* - Parse a single gcode line for its letter, code, subcode, and parameters
|
|
|
|
* - FASTER_GCODE_PARSER:
|
|
|
|
* - Flags existing params (1 bit each)
|
|
|
|
* - Stores value offsets (1 byte each)
|
|
|
|
* - Provide accessors for parameters:
|
|
|
|
* - Parameter exists
|
|
|
|
* - Parameter has value
|
|
|
|
* - Parameter value in different units and types
|
|
|
|
*/
|
|
|
|
class GCodeParser {
|
|
|
|
|
|
|
|
private:
|
|
|
|
static char *value_ptr; // Set by seen, used to fetch the value
|
|
|
|
|
|
|
|
#if ENABLED(FASTER_GCODE_PARSER)
|
2018-01-24 02:49:01 +00:00
|
|
|
static uint32_t codebits; // Parameters pre-scanned
|
2017-05-20 08:03:08 +00:00
|
|
|
static uint8_t param[26]; // For A-Z, offsets into command args
|
|
|
|
#else
|
|
|
|
static char *command_args; // Args start here, for slow scan
|
|
|
|
#endif
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Global states for GCode-level units features
|
|
|
|
|
2017-09-16 16:41:12 +00:00
|
|
|
static bool volumetric_enabled;
|
|
|
|
|
2017-05-20 08:03:08 +00:00
|
|
|
#if ENABLED(INCH_MODE_SUPPORT)
|
|
|
|
static float linear_unit_factor, volumetric_unit_factor;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(TEMPERATURE_UNITS_SUPPORT)
|
|
|
|
static TempUnit input_temp_units;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Command line state
|
|
|
|
static char *command_ptr, // The command, so it can be echoed
|
2018-10-05 23:19:45 +00:00
|
|
|
*string_arg, // string of command line
|
|
|
|
command_letter; // G, M, or T
|
2017-05-20 08:03:08 +00:00
|
|
|
static int codenum; // 123
|
|
|
|
#if USE_GCODE_SUBCODES
|
2017-07-06 19:06:39 +00:00
|
|
|
static uint8_t subcode; // .1
|
2017-05-20 08:03:08 +00:00
|
|
|
#endif
|
|
|
|
|
2018-10-05 23:19:45 +00:00
|
|
|
#if ENABLED(GCODE_MOTION_MODES)
|
|
|
|
static int16_t motion_mode_codenum;
|
|
|
|
#if USE_GCODE_SUBCODES
|
|
|
|
static uint8_t motion_mode_subcode;
|
2018-10-05 07:35:55 +00:00
|
|
|
#endif
|
2018-10-05 23:19:45 +00:00
|
|
|
FORCE_INLINE static void cancel_motion_mode() { motion_mode_codenum = -1; }
|
2018-10-05 07:35:55 +00:00
|
|
|
#endif
|
2018-10-05 23:19:45 +00:00
|
|
|
|
2017-05-20 08:03:08 +00:00
|
|
|
#if ENABLED(DEBUG_GCODE_PARSER)
|
2018-07-18 00:37:30 +00:00
|
|
|
static void debug();
|
2017-05-20 08:03:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Reset is done before parsing
|
|
|
|
static void reset();
|
|
|
|
|
2018-01-24 02:49:01 +00:00
|
|
|
#define LETTER_BIT(N) ((N) - 'A')
|
2017-06-27 23:39:06 +00:00
|
|
|
|
2018-01-29 22:45:44 +00:00
|
|
|
FORCE_INLINE static bool valid_signless(const char * const p) {
|
|
|
|
return NUMERIC(p[0]) || (p[0] == '.' && NUMERIC(p[1])); // .?[0-9]
|
|
|
|
}
|
2017-05-20 08:03:08 +00:00
|
|
|
|
2018-01-29 22:45:44 +00:00
|
|
|
FORCE_INLINE static bool valid_float(const char * const p) {
|
|
|
|
return valid_signless(p) || ((p[0] == '-' || p[0] == '+') && valid_signless(&p[1])); // [-+]?.?[0-9]
|
|
|
|
}
|
2018-01-24 02:49:31 +00:00
|
|
|
|
2018-01-29 22:45:44 +00:00
|
|
|
#if ENABLED(FASTER_GCODE_PARSER)
|
2018-01-24 02:49:31 +00:00
|
|
|
|
|
|
|
FORCE_INLINE static bool valid_int(const char * const p) {
|
|
|
|
return NUMERIC(p[0]) || ((p[0] == '-' || p[0] == '+') && NUMERIC(p[1])); // [-+]?[0-9]
|
|
|
|
}
|
|
|
|
|
2017-05-20 08:03:08 +00:00
|
|
|
// Set the flag and pointer for a parameter
|
2018-11-03 06:16:37 +00:00
|
|
|
static inline void set(const char c, char * const ptr) {
|
2018-01-24 02:49:01 +00:00
|
|
|
const uint8_t ind = LETTER_BIT(c);
|
2017-05-20 08:03:08 +00:00
|
|
|
if (ind >= COUNT(param)) return; // Only A-Z
|
2018-02-01 06:06:44 +00:00
|
|
|
SBI32(codebits, ind); // parameter exists
|
2017-05-20 08:03:08 +00:00
|
|
|
param[ind] = ptr ? ptr - command_ptr : 0; // parameter offset or 0
|
|
|
|
#if ENABLED(DEBUG_GCODE_PARSER)
|
2018-01-24 05:42:28 +00:00
|
|
|
if (codenum == 800) {
|
2018-01-24 02:49:01 +00:00
|
|
|
SERIAL_ECHOPAIR("Set bit ", (int)ind);
|
|
|
|
SERIAL_ECHOPAIR(" of codebits (", hex_address((void*)(codebits >> 16)));
|
|
|
|
print_hex_word((uint16_t)(codebits & 0xFFFF));
|
|
|
|
SERIAL_ECHOLNPAIR(") | param = ", (int)param[ind]);
|
2017-05-20 08:03:08 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// Code seen bit was set. If not found, value_ptr is unchanged.
|
|
|
|
// This allows "if (seen('A')||seen('B'))" to use the last-found value.
|
2018-11-03 06:16:37 +00:00
|
|
|
static inline bool seen(const char c) {
|
2018-01-24 02:49:01 +00:00
|
|
|
const uint8_t ind = LETTER_BIT(c);
|
2017-05-20 08:03:08 +00:00
|
|
|
if (ind >= COUNT(param)) return false; // Only A-Z
|
2018-02-01 06:06:44 +00:00
|
|
|
const bool b = TEST32(codebits, ind);
|
2018-01-24 02:49:01 +00:00
|
|
|
if (b) {
|
|
|
|
char * const ptr = command_ptr + param[ind];
|
|
|
|
value_ptr = param[ind] && valid_float(ptr) ? ptr : (char*)NULL;
|
|
|
|
}
|
2017-05-20 08:03:08 +00:00
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2018-11-03 06:16:37 +00:00
|
|
|
FORCE_INLINE static constexpr uint32_t letter_bits(const char * const str) {
|
|
|
|
return (str[0] ? _BV32(LETTER_BIT(str[0])) |
|
|
|
|
(str[1] ? _BV32(LETTER_BIT(str[1])) |
|
|
|
|
(str[2] ? _BV32(LETTER_BIT(str[2])) |
|
|
|
|
(str[3] ? _BV32(LETTER_BIT(str[3])) |
|
|
|
|
(str[4] ? _BV32(LETTER_BIT(str[4])) |
|
|
|
|
(str[5] ? _BV32(LETTER_BIT(str[5])) |
|
|
|
|
(str[6] ? _BV32(LETTER_BIT(str[6])) |
|
|
|
|
(str[7] ? _BV32(LETTER_BIT(str[7])) |
|
|
|
|
(str[8] ? _BV32(LETTER_BIT(str[8])) |
|
|
|
|
(str[9] ? _BV32(LETTER_BIT(str[9]))
|
|
|
|
: 0) : 0) : 0) : 0) : 0) : 0) : 0) : 0) : 0) : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// At least one of a list of code letters was seen
|
|
|
|
#ifdef CPU_32_BIT
|
|
|
|
FORCE_INLINE static bool seen(const char * const str) { return !!(codebits & letter_bits(str)); }
|
|
|
|
#else
|
|
|
|
// At least one of a list of code letters was seen
|
|
|
|
FORCE_INLINE static bool seen(const char * const str) {
|
|
|
|
const uint32_t letrbits = letter_bits(str);
|
|
|
|
const uint8_t * const cb = (uint8_t*)&codebits;
|
|
|
|
const uint8_t * const lb = (uint8_t*)&letrbits;
|
|
|
|
return (cb[0] & lb[0]) || (cb[1] & lb[1]) || (cb[2] & lb[2]) || (cb[3] & lb[3]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline bool seen_any() { return !!codebits; }
|
2017-06-27 23:39:06 +00:00
|
|
|
|
2018-02-01 06:06:44 +00:00
|
|
|
#define SEEN_TEST(L) TEST32(codebits, LETTER_BIT(L))
|
2017-06-09 12:06:23 +00:00
|
|
|
|
2017-06-27 04:31:45 +00:00
|
|
|
#else // !FASTER_GCODE_PARSER
|
2017-05-20 08:03:08 +00:00
|
|
|
|
|
|
|
// Code is found in the string. If not found, value_ptr is unchanged.
|
|
|
|
// This allows "if (seen('A')||seen('B'))" to use the last-found value.
|
2018-11-03 06:16:37 +00:00
|
|
|
static inline bool seen(const char c) {
|
2018-05-25 11:45:42 +00:00
|
|
|
char *p = strchr(command_args, c);
|
2017-05-20 08:03:08 +00:00
|
|
|
const bool b = !!p;
|
2018-01-24 02:49:31 +00:00
|
|
|
if (b) value_ptr = valid_float(&p[1]) ? &p[1] : (char*)NULL;
|
2017-05-20 08:03:08 +00:00
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2018-11-03 06:16:37 +00:00
|
|
|
static inline bool seen_any() { return *command_args == '\0'; }
|
2017-06-09 12:06:23 +00:00
|
|
|
|
|
|
|
#define SEEN_TEST(L) !!strchr(command_args, L)
|
|
|
|
|
2018-11-03 06:16:37 +00:00
|
|
|
// At least one of a list of code letters was seen
|
|
|
|
static inline bool seen(const char * const str) {
|
|
|
|
for (uint8_t i = 0; const char c = str[i]; i++)
|
|
|
|
if (SEEN_TEST(c)) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-06-27 04:31:45 +00:00
|
|
|
#endif // !FASTER_GCODE_PARSER
|
2017-05-20 08:03:08 +00:00
|
|
|
|
2017-06-29 20:11:22 +00:00
|
|
|
// Seen any axis parameter
|
2018-11-03 06:16:37 +00:00
|
|
|
static inline bool seen_axis() {
|
2017-06-29 20:11:22 +00:00
|
|
|
return SEEN_TEST('X') || SEEN_TEST('Y') || SEEN_TEST('Z') || SEEN_TEST('E');
|
|
|
|
}
|
|
|
|
|
2017-05-20 08:03:08 +00:00
|
|
|
// Populate all fields by parsing a single line of GCode
|
|
|
|
// This uses 54 bytes of SRAM to speed up seen/value
|
|
|
|
static void parse(char * p);
|
|
|
|
|
2017-11-04 21:36:41 +00:00
|
|
|
#if ENABLED(CNC_COORDINATE_SYSTEMS)
|
|
|
|
// Parse the next parameter as a new command
|
|
|
|
static bool chain();
|
|
|
|
#endif
|
|
|
|
|
2017-06-27 23:39:06 +00:00
|
|
|
// The code value pointer was set
|
2017-05-20 08:03:08 +00:00
|
|
|
FORCE_INLINE static bool has_value() { return value_ptr != NULL; }
|
|
|
|
|
2017-06-27 23:39:06 +00:00
|
|
|
// Seen a parameter with a value
|
2018-08-14 04:55:12 +00:00
|
|
|
static inline bool seenval(const char c) { return seen(c) && has_value(); }
|
2017-06-09 12:06:23 +00:00
|
|
|
|
2017-05-20 08:03:08 +00:00
|
|
|
// Float removes 'E' to prevent scientific notation interpretation
|
2018-08-14 04:55:12 +00:00
|
|
|
static inline float value_float() {
|
2017-05-20 08:03:08 +00:00
|
|
|
if (value_ptr) {
|
|
|
|
char *e = value_ptr;
|
|
|
|
for (;;) {
|
|
|
|
const char c = *e;
|
|
|
|
if (c == '\0' || c == ' ') break;
|
|
|
|
if (c == 'E' || c == 'e') {
|
|
|
|
*e = '\0';
|
2018-07-01 20:20:28 +00:00
|
|
|
const float ret = strtof(value_ptr, NULL);
|
2017-05-20 08:03:08 +00:00
|
|
|
*e = c;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
++e;
|
|
|
|
}
|
2018-07-01 20:20:28 +00:00
|
|
|
return strtof(value_ptr, NULL);
|
2017-05-20 08:03:08 +00:00
|
|
|
}
|
2018-07-01 20:20:28 +00:00
|
|
|
return 0;
|
2017-05-20 08:03:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Code value as a long or ulong
|
2018-08-14 04:55:12 +00:00
|
|
|
static inline int32_t value_long() { return value_ptr ? strtol(value_ptr, NULL, 10) : 0L; }
|
|
|
|
static inline uint32_t value_ulong() { return value_ptr ? strtoul(value_ptr, NULL, 10) : 0UL; }
|
2017-05-20 08:03:08 +00:00
|
|
|
|
|
|
|
// Code value for use as time
|
2018-11-11 13:51:39 +00:00
|
|
|
static inline millis_t value_millis() { return value_ulong(); }
|
|
|
|
static inline millis_t value_millis_from_seconds() { return (millis_t)(value_float() * 1000); }
|
2017-05-20 08:03:08 +00:00
|
|
|
|
|
|
|
// Reduce to fewer bits
|
2018-11-11 13:51:39 +00:00
|
|
|
static inline int16_t value_int() { return (int16_t)value_long(); }
|
|
|
|
static inline uint16_t value_ushort() { return (uint16_t)value_long(); }
|
2018-08-14 04:55:12 +00:00
|
|
|
static inline uint8_t value_byte() { return (uint8_t)constrain(value_long(), 0, 255); }
|
2017-05-20 08:03:08 +00:00
|
|
|
|
|
|
|
// Bool is true with no value or non-zero
|
2018-08-14 04:55:12 +00:00
|
|
|
static inline bool value_bool() { return !has_value() || !!value_byte(); }
|
2017-05-20 08:03:08 +00:00
|
|
|
|
|
|
|
// Units modes: Inches, Fahrenheit, Kelvin
|
|
|
|
|
|
|
|
#if ENABLED(INCH_MODE_SUPPORT)
|
|
|
|
|
2018-10-14 04:08:20 +00:00
|
|
|
static inline float mm_to_linear_unit(const float mm) { return mm / linear_unit_factor; }
|
|
|
|
static inline float mm_to_volumetric_unit(const float mm) { return mm / (volumetric_enabled ? volumetric_unit_factor : linear_unit_factor); }
|
|
|
|
|
2018-07-18 00:37:30 +00:00
|
|
|
// Init linear units by constructor
|
|
|
|
GCodeParser() { set_input_linear_units(LINEARUNIT_MM); }
|
|
|
|
|
2018-08-14 04:55:12 +00:00
|
|
|
static inline void set_input_linear_units(const LinearUnit units) {
|
2017-05-20 08:03:08 +00:00
|
|
|
switch (units) {
|
|
|
|
case LINEARUNIT_INCH:
|
2018-07-01 20:20:28 +00:00
|
|
|
linear_unit_factor = 25.4f;
|
2017-05-20 08:03:08 +00:00
|
|
|
break;
|
|
|
|
case LINEARUNIT_MM:
|
|
|
|
default:
|
2018-07-01 20:20:28 +00:00
|
|
|
linear_unit_factor = 1;
|
2017-05-20 08:03:08 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-07-01 20:20:28 +00:00
|
|
|
volumetric_unit_factor = POW(linear_unit_factor, 3);
|
2017-05-20 08:03:08 +00:00
|
|
|
}
|
|
|
|
|
2018-08-14 04:55:12 +00:00
|
|
|
static inline float axis_unit_factor(const AxisEnum axis) {
|
2017-05-20 08:03:08 +00:00
|
|
|
return (axis >= E_AXIS && volumetric_enabled ? volumetric_unit_factor : linear_unit_factor);
|
|
|
|
}
|
|
|
|
|
2018-11-11 13:51:39 +00:00
|
|
|
static inline float linear_value_to_mm(const float v) { return v * linear_unit_factor; }
|
|
|
|
static inline float axis_value_to_mm(const AxisEnum axis, const float v) { return v * axis_unit_factor(axis); }
|
|
|
|
static inline float per_axis_value(const AxisEnum axis, const float v) { return v / axis_unit_factor(axis); }
|
2017-05-20 08:03:08 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2018-11-11 13:51:39 +00:00
|
|
|
static inline float mm_to_linear_unit(const float mm) { return mm; }
|
|
|
|
static inline float mm_to_volumetric_unit(const float mm) { return mm; }
|
2018-10-14 04:08:20 +00:00
|
|
|
|
2018-11-11 13:51:39 +00:00
|
|
|
static inline float linear_value_to_mm(const float v) { return v; }
|
|
|
|
static inline float axis_value_to_mm(const AxisEnum axis, const float v) { UNUSED(axis); return v; }
|
|
|
|
static inline float per_axis_value(const AxisEnum axis, const float v) { UNUSED(axis); return v; }
|
2017-05-20 08:03:08 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2018-10-14 04:08:20 +00:00
|
|
|
#define LINEAR_UNIT(V) parser.mm_to_linear_unit(V)
|
|
|
|
#define VOLUMETRIC_UNIT(V) parser.mm_to_volumetric_unit(V)
|
|
|
|
|
|
|
|
static inline float value_linear_units() { return linear_value_to_mm(value_float()); }
|
|
|
|
static inline float value_axis_units(const AxisEnum axis) { return axis_value_to_mm(axis, value_float()); }
|
|
|
|
static inline float value_per_axis_units(const AxisEnum axis) { return per_axis_value(axis, value_float()); }
|
|
|
|
|
2017-05-20 08:03:08 +00:00
|
|
|
#if ENABLED(TEMPERATURE_UNITS_SUPPORT)
|
|
|
|
|
2018-08-14 04:55:12 +00:00
|
|
|
static inline void set_input_temp_units(TempUnit units) { input_temp_units = units; }
|
2017-05-20 08:03:08 +00:00
|
|
|
|
2018-10-30 21:34:45 +00:00
|
|
|
#if HAS_LCD_MENU && DISABLED(DISABLE_M503)
|
2017-05-20 08:03:08 +00:00
|
|
|
|
2018-11-11 13:51:39 +00:00
|
|
|
static inline char temp_units_code() {
|
2017-05-20 08:03:08 +00:00
|
|
|
return input_temp_units == TEMPUNIT_K ? 'K' : input_temp_units == TEMPUNIT_F ? 'F' : 'C';
|
|
|
|
}
|
2018-11-11 13:51:39 +00:00
|
|
|
static inline PGM_P temp_units_name() {
|
2017-05-31 18:59:49 +00:00
|
|
|
return input_temp_units == TEMPUNIT_K ? PSTR("Kelvin") : input_temp_units == TEMPUNIT_F ? PSTR("Fahrenheit") : PSTR("Celsius");
|
2017-05-20 08:03:08 +00:00
|
|
|
}
|
2018-08-14 04:55:12 +00:00
|
|
|
static inline float to_temp_units(const float &f) {
|
2017-05-20 08:03:08 +00:00
|
|
|
switch (input_temp_units) {
|
|
|
|
case TEMPUNIT_F:
|
2018-07-01 20:20:28 +00:00
|
|
|
return f * 0.5555555556f + 32;
|
2017-05-20 08:03:08 +00:00
|
|
|
case TEMPUNIT_K:
|
2018-07-01 20:20:28 +00:00
|
|
|
return f + 273.15f;
|
2017-05-20 08:03:08 +00:00
|
|
|
case TEMPUNIT_C:
|
|
|
|
default:
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:34:45 +00:00
|
|
|
#endif // HAS_LCD_MENU && !DISABLE_M503
|
2017-05-20 08:03:08 +00:00
|
|
|
|
2018-08-14 04:55:12 +00:00
|
|
|
static inline float value_celsius() {
|
2017-05-20 08:03:08 +00:00
|
|
|
const float f = value_float();
|
|
|
|
switch (input_temp_units) {
|
|
|
|
case TEMPUNIT_F:
|
2018-07-01 20:20:28 +00:00
|
|
|
return (f - 32) * 0.5555555556f;
|
2017-05-20 08:03:08 +00:00
|
|
|
case TEMPUNIT_K:
|
2018-07-01 20:20:28 +00:00
|
|
|
return f - 273.15f;
|
2017-05-20 08:03:08 +00:00
|
|
|
case TEMPUNIT_C:
|
|
|
|
default:
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-14 04:55:12 +00:00
|
|
|
static inline float value_celsius_diff() {
|
2017-05-20 08:03:08 +00:00
|
|
|
switch (input_temp_units) {
|
|
|
|
case TEMPUNIT_F:
|
2018-07-01 20:20:28 +00:00
|
|
|
return value_float() * 0.5555555556f;
|
2017-05-20 08:03:08 +00:00
|
|
|
case TEMPUNIT_C:
|
|
|
|
case TEMPUNIT_K:
|
|
|
|
default:
|
|
|
|
return value_float();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-14 04:08:20 +00:00
|
|
|
#define TEMP_UNIT(N) parser.to_temp_units(N)
|
|
|
|
|
2017-06-27 04:31:45 +00:00
|
|
|
#else // !TEMPERATURE_UNITS_SUPPORT
|
2017-05-20 08:03:08 +00:00
|
|
|
|
2018-11-11 13:51:39 +00:00
|
|
|
static inline float value_celsius() { return value_float(); }
|
|
|
|
static inline float value_celsius_diff() { return value_float(); }
|
2017-05-20 08:03:08 +00:00
|
|
|
|
2018-10-14 04:08:20 +00:00
|
|
|
#define TEMP_UNIT(N) (N)
|
|
|
|
|
2017-06-27 04:31:45 +00:00
|
|
|
#endif // !TEMPERATURE_UNITS_SUPPORT
|
2017-05-20 08:03:08 +00:00
|
|
|
|
2018-11-11 13:51:39 +00:00
|
|
|
static inline float value_feedrate() { return value_linear_units(); }
|
2017-05-20 08:03:08 +00:00
|
|
|
|
|
|
|
void unknown_command_error();
|
|
|
|
|
2017-06-27 05:49:21 +00:00
|
|
|
// Provide simple value accessors with default option
|
2018-11-11 13:51:39 +00:00
|
|
|
static inline float floatval(const char c, const float dval=0.0) { return seenval(c) ? value_float() : dval; }
|
|
|
|
static inline bool boolval(const char c, const bool dval=false) { return seenval(c) ? value_bool() : (seen(c) ? true : dval); }
|
|
|
|
static inline uint8_t byteval(const char c, const uint8_t dval=0) { return seenval(c) ? value_byte() : dval; }
|
|
|
|
static inline int16_t intval(const char c, const int16_t dval=0) { return seenval(c) ? value_int() : dval; }
|
|
|
|
static inline uint16_t ushortval(const char c, const uint16_t dval=0) { return seenval(c) ? value_ushort() : dval; }
|
|
|
|
static inline int32_t longval(const char c, const int32_t dval=0) { return seenval(c) ? value_long() : dval; }
|
|
|
|
static inline uint32_t ulongval(const char c, const uint32_t dval=0) { return seenval(c) ? value_ulong() : dval; }
|
|
|
|
static inline float linearval(const char c, const float dval=0) { return seenval(c) ? value_linear_units() : dval; }
|
|
|
|
static inline float celsiusval(const char c, const float dval=0) { return seenval(c) ? value_celsius() : dval; }
|
2017-06-27 05:49:21 +00:00
|
|
|
|
2017-05-20 08:03:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern GCodeParser parser;
|