Skip to content

Commit 60a6a1a

Browse files
author
Gizmo
committed
Updated Air China SOPs.
1 parent 86c5da9 commit 60a6a1a

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Controlzmo/SOPs.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
<Text type=".*">All PIREPs are reviewed; air time counts</Text>
1515
</Airline>
1616
<Airline callsign="air[- ]china|cathay"> <!-- Virtual Air China -->
17-
<Text type=".*">Block time counts</Text>
18-
<Text type=".*">Start #2 first, *warm up*; *cool down*</Text>
19-
<Text type=".*">Must have fuel ≥ 1.5T on pushback &amp;1T on landing</Text>
17+
<Text type=".*">Block time counts (to be reconfirmed?)</Text>
18+
<Text type=".*">*Warm up*; *cool down*</Text>
19+
<Text type=".*">Must have fuel ≥ 1T on landing</Text>
2020
</Airline>
2121
<Airline callsign="all[- ]nippon|air[ -]peach"> <!-- vANA -->
2222
<!-- 'Airbus A320 NX ANA All Nippon Airways JA219A SoccerYCA' and 'Airbus A320 CFM APJ' -->

Picozmo/Picozmo.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const char *volatile strobeLight, *volatile beaconLight, *volatile wingIceLight,
1515
const char *baroUnitInHg = "inHg", *baroUnitHPa = "hPa", *volatile newBaroUnits, *volatile currentBaroUnits;
1616

1717
volatile bool forceUpdate, apuMasterOn, apuFault, apuStartOn, apuAvail, fcuAltManaged = true;
18-
volatile char fcuLcdText[4][16];
18+
volatile char fcuLcdText[4][16] = { { '0', 000, '0', 010, '1', 001, '1', 011, '2', 002, '2', 012 }, { '3', 003, '3', 013 },
19+
{ '4', 004, '4', 014, '-', 'x', '-', '5', 005, '5', 015, '6', 006, '6', 016 }, { '7', 007, '7', 017 }};
1920

2021
mutex_t mut0to1, mut1to0;

Picozmo/core0.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ static void updateOled() {
160160
oled.set2X();
161161
oled.setCursor(20 + 22 * (i - 1), 4);
162162
oled.print(current[i] = desiredBaro[i]);
163-
break;
163+
return;
164164
}
165165
}
166166
}
@@ -315,6 +315,7 @@ void loop(void) {
315315
// Why aren't these added to the task manager?
316316
ioDeviceSync(io23017lights);
317317
ioDeviceSync(io23017board);
318+
// ioDeviceSync(ioPico);
318319
taskManager.runLoop();
319320

320321
updateLcds();

0 commit comments

Comments
 (0)