Read audio panel switches and parking brake.
This commit is contained in:
parent
44be7da053
commit
54b980854c
1 changed files with 14 additions and 1 deletions
|
@ -1285,6 +1285,16 @@ bool FGATC610x::do_radio_switches() {
|
||||||
fgSetInt( "/radios/kt-70/inputs/ident-btn",
|
fgSetInt( "/radios/kt-70/inputs/ident-btn",
|
||||||
!(radio_switch_data[27] >> 5 & 0x01) );
|
!(radio_switch_data[27] >> 5 & 0x01) );
|
||||||
|
|
||||||
|
// Audio panel switches
|
||||||
|
fgSetInt( "/radios/nav[0]/audio-btn",
|
||||||
|
(radio_switch_data[3] & 0x01) );
|
||||||
|
fgSetInt( "/radios/nav[1]/audio-btn",
|
||||||
|
(radio_switch_data[3] >> 2 & 0x01) );
|
||||||
|
fgSetInt( "/radios/kr-87/inputs/audio-btn",
|
||||||
|
(radio_switch_data[3] >> 4 & 0x01) );
|
||||||
|
fgSetInt( "/radios/marker-beacon/audio-btn",
|
||||||
|
(radio_switch_data[3] >> 6 & 0x01) );
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1810,7 +1820,10 @@ bool FGATC610x::do_switches() {
|
||||||
fgSetBool( "/controls/circuit-breakers/annunciators",
|
fgSetBool( "/controls/circuit-breakers/annunciators",
|
||||||
switch_matrix[board][7][0] );
|
switch_matrix[board][7][0] );
|
||||||
|
|
||||||
fgSetDouble( "/controls/parking-brake", switch_matrix[board][7][3] );
|
fgSetDouble( "/controls/parking-brake",
|
||||||
|
switch_matrix[board][7][3] );
|
||||||
|
fgSetDouble( "/radios/marker-beacon/power-btn",
|
||||||
|
switch_matrix[board][6][1] );
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue