Skip to content

Commit

Permalink
Minor code changes & doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
joergschultzelutter committed Sep 6, 2021
1 parent 35ddaf9 commit e9ad349
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# This is the message that we will send out to WXBOT
${message} ${callsign}>APRS::WXBOT${SPACE}${SPACE}${SPACE}${SPACE}:tomorrow

# APRS-IS server filter, see http://www.aprs-is.net/javAPRSFilter.aspx.
# APRS-IS server filter, see http://www.aprs-is.net/javAPRSFilter.aspx
${filter} g/WXBOT/${callsign}*

*** Test Cases ***
Expand Down
6 changes: 2 additions & 4 deletions src/AprsLibrary.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
)
logger = logging.getLogger(__name__)

__version__ = "0.1"
__version__ = "0.2"
__author__ = "Joerg Schultze-Lutter"


Expand Down Expand Up @@ -255,9 +255,7 @@ def set_aprsis_msgno(self, aprsis_msgno: int = None):
@keyword("Increment APRS-IS MsgNo")
def increment_aprsis_msgno(self):
logger.debug(msg="Incrementing APRS-IS message number")
a = self.aprsis_msgno
self.aprsis_msgno = a + 1

self.aprsis_msgno = self.aprsis_msgno + 1
# The message counter needs to support both old and new formats
# old format = 5 digits, numeric 00000...99999
# new format = 2 characters, alpha AA...ZZ
Expand Down
2 changes: 1 addition & 1 deletion src/send_and_receive_single_packet.robot
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ${callsign} YOURCALLSIGN
# This is the message that we will send out to WXBOT
${message} ${callsign}>APRS::WXBOT${SPACE}${SPACE}${SPACE}${SPACE}:tomorrow

# APRS-IS server filter, see http://www.aprs-is.net/javAPRSFilter.aspx.
# APRS-IS server filter, see http://www.aprs-is.net/javAPRSFilter.aspx
${filter} g/WXBOT/${callsign}*

*** Test Cases ***
Expand Down

0 comments on commit e9ad349

Please sign in to comment.