We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 959260e commit 311bb18Copy full SHA for 311bb18
main.c
@@ -112,7 +112,8 @@ int main(int argc, char *argv[]) {
112
int n = slip_read_byte(&slip, rx);
113
if (n != SLIP_NO_ERROR) {
114
if (n == SLIP_ERROR_INVALID_PACKET) {
115
- reset_display(port);
+ // Reset display on invalid packets. On current firmwares this can cause a softlock in effect list so this is commented out for now.
116
+ //reset_display(port);
117
} else {
118
SDL_LogError(SDL_LOG_CATEGORY_ERROR, "SLIP error %d\n", n);
119
}
@@ -135,4 +136,4 @@ int main(int argc, char *argv[]) {
135
136
free(serial_buf);
137
138
return 0;
-}
139
+}
0 commit comments