Skip to content

Commit 67af500

Browse files
committed
Increase ULOG download rate
1 parent 6d7855d commit 67af500

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

MAVGCL/src/main/java/com/comino/flight/log/MavlinkLogReader.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ public void requestLastLog() {
164164
props.getProgressProperty().set(0);
165165
props.getLogLoadedProperty().set(false);
166166

167-
timeout = wq.addCyclicTask("LP",5,() -> {
167+
timeout = wq.addCyclicTask("LP",100,() -> {
168168

169169
switch (state) {
170170
case IDLE:
@@ -184,7 +184,8 @@ public void requestLastLog() {
184184
abortReadingLog();
185185
return;
186186
}
187-
if(searchForNextUnreadPackage())
187+
int c = 0;
188+
while(searchForNextUnreadPackage() && c++ < 7)
188189
requestDataPackages(chunk_offset * LOG_PACKAG_DATA_LENGTH, chunk_size * LOG_PACKAG_DATA_LENGTH);
189190
break;
190191
}

0 commit comments

Comments
 (0)