Fix M914 value range (-64...+63)

Fix #10896
This commit is contained in:
Scott Lahteine 2018-05-29 12:02:15 -05:00
parent b6cd8d9cc6
commit 3f2a062a57

View File

@ -265,7 +265,7 @@ void GcodeSuite::M912() {
bool report = true;
const uint8_t index = parser.byteval('I');
LOOP_XYZ(i) if (parser.seen(axis_codes[i])) {
const int8_t value = (int8_t)constrain(parser.value_int(), -63, 64);
const int8_t value = (int8_t)constrain(parser.value_int(), -64, 63);
report = false;
switch (i) {
case X_AXIS: