From 07fd65b57a0e592fcb2eafd7e2862df11a3fee13 Mon Sep 17 00:00:00 2001 From: Jesse Schoch Date: Thu, 5 Aug 2021 10:49:48 -0700 Subject: [PATCH] fixed rx length --- Grbl_Esp32/src/Spindles/TecoL510.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Grbl_Esp32/src/Spindles/TecoL510.cpp b/Grbl_Esp32/src/Spindles/TecoL510.cpp index 31238484..156fcb3d 100644 --- a/Grbl_Esp32/src/Spindles/TecoL510.cpp +++ b/Grbl_Esp32/src/Spindles/TecoL510.cpp @@ -67,7 +67,7 @@ namespace Spindles { // NOTE: data length is excluding the CRC16 checksum. data.tx_length = 6; - data.rx_length = 5; + data.rx_length = 6; // We have to know the max RPM before we can set the current RPM: auto max_rpm = this->_max_rpm;