Skip to content

change <MO status> parameter check from 8 to 5, 5+ == send failure not 8+ #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 21, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion adafruit_rockblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def satellite_transfer(self, location=None):
if resp[-1].strip().decode() == "OK":
status = resp[-3].strip().decode().split(":")[1]
status = [int(s) for s in status.split(",")]
if status[0] <= 8:
if status[0] <= 5:
# outgoing message sent successfully
self.data_out = None
return tuple(status)
Expand Down