Skip to content

Commit f935da3

Browse files
committed
change <MO status> parameter from 8 to 4 per page 88 of IRDM_ISU_ATCommandReferenceMAN0009_Rev2.0_ATCOMM_Oct2012.pdf <MO status> values 0 to 4 are success, 5+ are failure
1 parent d98b530 commit f935da3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_rockblock.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def satellite_transfer(self, location=None):
181181
if resp[-1].strip().decode() == "OK":
182182
status = resp[-3].strip().decode().split(":")[1]
183183
status = [int(s) for s in status.split(",")]
184-
if status[0] <= 8:
184+
if status[0] <= 4:
185185
# outgoing message sent successfully
186186
self.data_out = None
187187
return tuple(status)

0 commit comments

Comments
 (0)