# # in this file we define system FSIO expressions # # see http://rusefi.com/wiki/index.php?title=Manual:Flexible_Logic # # Jan 19, 2017 # Andrey Belomutskiy, (c) 2012-2017 # FAN_CONTROL_LOGIC=(fan and (coolant > fan_off_setting)) | (coolant > fan_on_setting) # todo: start-up fuel pump priming time should probably be configurable? FUEL_PUMP_LOGIC=(time_since_boot < 4) | (rpm > 0) ALTERNATOR_LOGIC=vbatt < 14.5 AC_RELAY_LOGIC=ac_on_switch # Combined RPM, CLT and VBATT warning light COMBINED_WARNING_LIGHT=(rpm > fsio_setting(2)) | ((coolant > fsio_setting(3)) | (vbatt < fsio_setting(4)))