We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d7855d commit 67af500Copy full SHA for 67af500
MAVGCL/src/main/java/com/comino/flight/log/MavlinkLogReader.java
@@ -164,7 +164,7 @@ public void requestLastLog() {
164
props.getProgressProperty().set(0);
165
props.getLogLoadedProperty().set(false);
166
167
- timeout = wq.addCyclicTask("LP",5,() -> {
+ timeout = wq.addCyclicTask("LP",100,() -> {
168
169
switch (state) {
170
case IDLE:
@@ -184,7 +184,8 @@ public void requestLastLog() {
184
abortReadingLog();
185
return;
186
}
187
- if(searchForNextUnreadPackage())
+ int c = 0;
188
+ while(searchForNextUnreadPackage() && c++ < 7)
189
requestDataPackages(chunk_offset * LOG_PACKAG_DATA_LENGTH, chunk_size * LOG_PACKAG_DATA_LENGTH);
190
break;
191
0 commit comments