Skip to content

Commit

Permalink
Merge pull request #432 from PW-Sat2/lower_temperature_warning
Browse files Browse the repository at this point in the history
Lowered temperature warning to -4 Celsius in Beacon Parser.
  • Loading branch information
begreeen authored Aug 10, 2019
2 parents 81af881 + 926d10f commit 63f8e04
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions integration_tests/devices/comm_beacon.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ def __repr__(self):
bp_volt_ok = "!!!!! "

bp_temp_ok = ' '
if not check_range('14: Controller A', '1062: BP.Temperature A', 0, 45) \
or not check_range('14: Controller A', '1075: BP.Temperature B', 0, 45)\
or not check_range('15: Controller B', '1194: BP.Temperature', 0, 45):
if not check_range('14: Controller A', '1062: BP.Temperature A', -4, 45) \
or not check_range('14: Controller A', '1075: BP.Temperature B', -4, 45)\
or not check_range('15: Controller B', '1194: BP.Temperature', -4, 45):
bp_temp_ok = "!!!!! "

pa_temp_ok = ' '
if not check_range('11: Comm', '0756: [Now] Power Amplifier Temperature', 0, 45) \
or not check_range('11: Comm', '0605: [Last transmission] Power Amplifier Temperature', 0, 56):
if not check_range('11: Comm', '0756: [Now] Power Amplifier Temperature', -4, 45) \
or not check_range('11: Comm', '0605: [Last transmission] Power Amplifier Temperature', -4, 56):
pa_temp_ok = "!!!!! "

rx_current_ok = ' '
Expand Down

0 comments on commit 63f8e04

Please sign in to comment.