Added comments on over-temp/-pressure eval logic

This commit is contained in:
Snorre Selmer 2022-11-23 12:51:56 +01:00 committed by GitHub
parent 9fb5e6d42c
commit 996ff445b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,12 +34,12 @@ yield
# Check storage pressure
l OutPressure filtration PressureOutput
slt FilterActive OutPressure MAXPRESSURE
beqz FilterActive filteronoff
beqz FilterActive filteronoff # if pressure > MAX, skip to shutdown
# Check temperature
l InTemperature filtration TemperatureInput
slt FilterActive InTemperature MAXTEMPERATURE
beqz FilterActive filteronoff
beqz FilterActive filteronoff # if temperature > MAX, skip to shutdown
# Check filters and set diodes
ls FilterLeft filtration 0 Quantity
@ -106,4 +106,4 @@ beqz FilterHash ra
#if you are still here then it is an error so end
s filtration On 0
j start
j start