1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-16 11:35:44 +02:00

fixed rx length

This commit is contained in:
Jesse Schoch
2021-08-05 10:49:48 -07:00
parent a36f1bea44
commit 07fd65b57a

View File

@@ -67,7 +67,7 @@ namespace Spindles {
// NOTE: data length is excluding the CRC16 checksum. // NOTE: data length is excluding the CRC16 checksum.
data.tx_length = 6; 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: // We have to know the max RPM before we can set the current RPM:
auto max_rpm = this->_max_rpm; auto max_rpm = this->_max_rpm;