Airspeed_Indicator_Fail Variable

True if the airspeed gauge is in failed state (that is, not working). Boolean. Read-write.

Example

IF AIRSPEED_INDICATOR_FAIL = FALSE THEN

WHILE VELOCITY_INDICATED < 45

'Wait for speed to increase.

ENDWHILE

'Now fail airspeed indicator.

AIRSPEED_INDICATOR_FAIL = TRUE

ENDIF