Temperature requirement

Temperature range [-80,60] is a requirement in Annex 3
This commit is contained in:
Huy Vû 2017-10-11 11:38:26 +02:00 committed by GitHub
parent c708d57fcc
commit 45c32cd7aa

View File

@ -339,9 +339,9 @@ def isBDS44(msg, rev=False):
if vw is not None and vw[0] > 250:
result &= False
# if temp44(msg):
# if temp44(msg) > 60 or temp44(msg) < -80:
# result &= False
if temp44(msg):
if temp44(msg) > 60 or temp44(msg) < -80:
result &= False
return result