We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90b90f3 commit 68da86cCopy full SHA for 68da86c
cubesatsim/cubesatsim.ino
@@ -4915,7 +4915,7 @@ void get_serial_string() {
4915
int input = 0;
4916
int i = 0;
4917
unsigned int elapsed_time = (unsigned int) millis();
4918
- while ((input != '\n') && (input!= '\r') && (i < 128) && ((millis() - elapsed_time) < 20000)) {
+ while ((input != '\n') && (input!= '\r') && (i < 128) && ((millis() - elapsed_time) < 40000)) { // was 20
4919
if (Serial.available() > 0) {
4920
input = Serial.read();
4921
if ((input != '\n') && (input!= '\r')) {
0 commit comments