You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Send F0 0F as well as M112 when emergency stop buttin pressed, for RepRapFirmware 2.02 and later
For dimming control, treat printer state Off the same as Idle
Error message popups no longer time out, they have to be closed manually
Bug fix: Extrusion rates didn't match the buttons
Bug fix: babystepping sent M290 M290 S0.02 instead of just M290 S0.02
Bug fix: couldn't cancel a message popup that appears on top of a smaller popup
Bug fix: serial I/O JSON parameter buffer was too short to handle long responses e.g. from M591 D0
Copy file name to clipboardExpand all lines: src/Hardware/SerialIo.cpp
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -205,7 +205,7 @@ namespace SerialIo
205
205
206
206
// fieldId is the name of the field being received. A '^' character indicates the position of an array index, and a ':' character indicates a field separator.
207
207
String<50> fieldId;
208
-
String<160> fieldVal; // long enough for about 3 lines of message
208
+
String<300> fieldVal; // long enough for about 6 lines of message
0 commit comments