diff --git a/selfdrive/controls/controlsd.py b/selfdrive/controls/controlsd.py index acb0fd2170..ae0dfa8c33 100755 --- a/selfdrive/controls/controlsd.py +++ b/selfdrive/controls/controlsd.py @@ -186,7 +186,8 @@ class Controls: if self.sm['deviceState'].freeSpacePercent < 7: # under 7% of space free no enable allowed self.events.add(EventName.outOfSpace) - if self.sm['deviceState'].memoryUsagePercent > 65: + # TODO: make tici threshold the same + if self.sm['deviceState'].memoryUsagePercent > (90 if TICI else 65): self.events.add(EventName.lowMemory) # Alert if fan isn't spinning for 5 seconds