User manual

void my_init(void)
{
if (dInstrumentPanel.bTcnILS_Throw) { // this switch closed
call(hsi_tcn_ils);
}
if (dInstrumentPanel.bTcn_Throw) { // this switch closed
call(hsi_tcn);
}
if (dInstrumentPanel.bNav_Throw) { // this switch closed
call(hsi_nav);
}
if (dInstrumentPanel.bNavILS_Throw) { // this switch closed
call(hsi_nav_ils);
}
// and so on for other controls…
}
90