// ***************************************************************************** // * Config_SIOC ver 3.2 - By Manolo Vélez - www.opencockpits.com // ***************************************************************************** // * FileName : Flaps-autobrake_FS.txt // * Date : 24/084/2006 // Var 0007, Link IOCARD_OUT, Output 139 // Anunciador AUTO BRAKE DISARM Var 0008, Link FSUIPC_INOUT, Offset $2F80, Length 2 // Autobrake Panel FSUIPC Var 0010, Link IOCARD_SW, Input 165 // Switch Auto Brake. Pos MAX { IF V0010 = 1 // Si ponemos el autobrake en MAX { V0008 = 5 // Pasamos el valor al FS } } Var 0011, Link IOCARD_SW, Input 166 // Switch Auto Brake. Pos 3 { IF V0011 = 1 // Si ponemos el autobrake en 3 { V0008 = 4 // Pasamos el valor al FS } } Var 0012, Link IOCARD_SW, Input 167 // Switch Auto Brake. Pos 2 { IF V0012 = 1 // Si ponemos el autobrake en 2 { V0008 = 3 // Pasamos el valor al FS } } Var 0013, Link IOCARD_SW, Input 168 // Switch Auto Brake. Pos 1 { IF V0013 = 1 // Si ponemos el autobrake en 1 { V0008 = 2 // Pasamos el valor al FS } } Var 0014, Link IOCARD_SW, Input 169 // Switch Auto Brake. Pos OFF { IF V0014 = 1 // Si ponemos el autobrake en OFF { V0008 = 1 // Pasamos el valor al FS V0007 = 1 // Encendemos el Anunciador AUTO BRAKE DISA } ELSE { V0007 = 0 // Apagamos el Anunciador AUTO BRAKE DISARM } } Var 0015, Link IOCARD_SW, Input 170 // Switch Auto Brake. Pos RTO { IF V0015 = 1 // Si ponemos el autobrake en RTO { V0008 = 0 // Pasamos el valor al FS V0007 = 1 // Encendemos el AUTO BRAKE DISARM V0007 = DELAY 0 ,200 // Retrasamos el apagado 2 segundos } ELSE { V0007 = 0 // Apagamos el Anunciador AUTO BRAKE DISARM } }