Fix overshoot navigating to menu (again).
This commit is contained in:
parent
b27ee06ebe
commit
a3fe804c3d
2 changed files with 10 additions and 4 deletions
|
@ -631,6 +631,7 @@ public class RuffyScripter implements RuffyCommands {
|
||||||
|
|
||||||
public void navigateToMenu(MenuType desiredMenu) {
|
public void navigateToMenu(MenuType desiredMenu) {
|
||||||
int retries = 20;
|
int retries = 20;
|
||||||
|
MenuType lastSeenMenu = getCurrentMenu().getType();
|
||||||
while (getCurrentMenu().getType() != desiredMenu) {
|
while (getCurrentMenu().getType() != desiredMenu) {
|
||||||
MenuType currentMenuType = getCurrentMenu().getType();
|
MenuType currentMenuType = getCurrentMenu().getType();
|
||||||
log.debug("Navigating to menu " + desiredMenu + ", current menu: " + currentMenuType);
|
log.debug("Navigating to menu " + desiredMenu + ", current menu: " + currentMenuType);
|
||||||
|
@ -640,7 +641,12 @@ public class RuffyScripter implements RuffyCommands {
|
||||||
+ ". Check menu settings on your pump to ensure it's not hidden.");
|
+ ". Check menu settings on your pump to ensure it's not hidden.");
|
||||||
}
|
}
|
||||||
pressMenuKey();
|
pressMenuKey();
|
||||||
waitForScreenUpdate();
|
// sometimes the pump takes a bit longer (more than one screen refresh) to advance
|
||||||
|
// to the next menu. wait until we actually see the change to avoid overshoots.
|
||||||
|
while (getCurrentMenu().getType() == lastSeenMenu) {
|
||||||
|
waitForScreenUpdate();
|
||||||
|
}
|
||||||
|
lastSeenMenu = getCurrentMenu().getType();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -100,9 +100,6 @@ public class ReadHistoryCommand extends BaseCommand {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
scripter.returnToRootMenu();
|
|
||||||
scripter.verifyRootMenuIsDisplayed();
|
|
||||||
|
|
||||||
if (log.isDebugEnabled()) {
|
if (log.isDebugEnabled()) {
|
||||||
if (!history.bolusHistory.isEmpty()) {
|
if (!history.bolusHistory.isEmpty()) {
|
||||||
log.debug("Read bolus history (" + history.bolusHistory.size() + "):");
|
log.debug("Read bolus history (" + history.bolusHistory.size() + "):");
|
||||||
|
@ -130,6 +127,9 @@ public class ReadHistoryCommand extends BaseCommand {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
scripter.returnToRootMenu();
|
||||||
|
scripter.verifyRootMenuIsDisplayed();
|
||||||
|
|
||||||
result.success(true).history(history);
|
result.success(true).history(history);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue