custom-board-bundle-sample-.../firmware/controllers/system_fsio.txt

22 lines
588 B
Plaintext
Raw Normal View History

2017-01-19 13:03:23 -08:00
#
2017-01-19 14:04:15 -08:00
# in this file we define system FSIO expressions
2017-01-19 13:03:23 -08:00
#
# see http://rusefi.com/wiki/index.php?title=Manual:Flexible_Logic
#
# Jan 19, 2017
# Andrey Belomutskiy, (c) 2012-2017
#
2017-01-19 14:04:15 -08:00
FAN_CONTROL_LOGIC=(fan and (coolant > fan_off_setting)) | (coolant > fan_on_setting)
2017-01-19 13:03:23 -08:00
2017-01-19 14:04:15 -08:00
# todo: start-up fuel pump priming time should probably be configurable?
FUEL_PUMP_LOGIC=(time_since_boot < 4) | (rpm > 0)
2017-01-19 13:03:23 -08:00
ALTERNATOR_LOGIC=vbatt < 14.5
2017-04-25 05:29:24 -07:00
AC_RELAY_LOGIC=ac_on_switch
SIMPLE_WARNING_LIGHT=rpm > fsio_setting(2)
#COMBINED_WARNING_LIGHT=rpm > fsio_setting(2) | coolant fsio_setting(3) | vbatt < fsio_setting(4)