1
0
Fork 0

Missed changes from KAP-140 fixes

This commit is contained in:
James Turner 2020-12-30 16:39:53 +00:00
parent b42759704f
commit eaa31bb422

View file

@ -610,9 +610,12 @@ var navButton = func {
annunciatorNavArm.setBoolValue(1); annunciatorNavArm.setBoolValue(1);
annunciatorAprArm.setBoolValue(0); annunciatorAprArm.setBoolValue(0);
annunciatorRevArm.setBoolValue(0); annunciatorRevArm.setBoolValue(0);
annunciatorGsArm.setBoolValue(0);
annunciatorNav.setBoolValue(0); annunciatorNav.setBoolValue(0);
annunciatorRol.setBoolValue(0); annunciatorRol.setBoolValue(0);
annunciatorRev.setBoolValue(0); annunciatorRev.setBoolValue(0);
annunciatorApr.setBoolValue(0);
annunciatorGs.setBoolValue(0);
navArmFromHdg(); navArmFromHdg();
} }
@ -793,9 +796,12 @@ var aprButton = func {
annunciatorNavArm.setBoolValue(0); annunciatorNavArm.setBoolValue(0);
annunciatorAprArm.setBoolValue(1); annunciatorAprArm.setBoolValue(1);
annunciatorRevArm.setBoolValue(0); annunciatorRevArm.setBoolValue(0);
annunciatorGsArm.setBoolValue(0);
annunciatorNav.setBoolValue(0); annunciatorNav.setBoolValue(0);
annunciatorRol.setBoolValue(0); annunciatorRol.setBoolValue(0);
annunciatorRev.setBoolValue(0); annunciatorRev.setBoolValue(0);
annunciatorApr.setBoolValue(0);
annunciatorGs.setBoolValue(0);
aprArmFromHdg(); aprArmFromHdg();
} }
@ -1021,9 +1027,12 @@ var revButton = func {
annunciatorNavArm.setBoolValue(0); annunciatorNavArm.setBoolValue(0);
annunciatorAprArm.setBoolValue(0); annunciatorAprArm.setBoolValue(0);
annunciatorRevArm.setBoolValue(1); annunciatorRevArm.setBoolValue(1);
annunciatorGsArm.setBoolValue(0);
annunciatorNav.setBoolValue(0); annunciatorNav.setBoolValue(0);
annunciatorRol.setBoolValue(0); annunciatorRol.setBoolValue(0);
annunciatorRev.setBoolValue(0); annunciatorRev.setBoolValue(0);
annunciatorApr.setBoolValue(0);
annunciatorGs.setBoolValue(0);
revArmFromHdg(); revArmFromHdg();
} }