Skip to content

Commit e9ad349

Browse files
Minor code changes & doc updates
1 parent 35ddaf9 commit e9ad349

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# This is the message that we will send out to WXBOT
2828
${message} ${callsign}>APRS::WXBOT${SPACE}${SPACE}${SPACE}${SPACE}:tomorrow
2929

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

3333
*** Test Cases ***

src/AprsLibrary.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
)
3232
logger = logging.getLogger(__name__)
3333

34-
__version__ = "0.1"
34+
__version__ = "0.2"
3535
__author__ = "Joerg Schultze-Lutter"
3636

3737

@@ -255,9 +255,7 @@ def set_aprsis_msgno(self, aprsis_msgno: int = None):
255255
@keyword("Increment APRS-IS MsgNo")
256256
def increment_aprsis_msgno(self):
257257
logger.debug(msg="Incrementing APRS-IS message number")
258-
a = self.aprsis_msgno
259-
self.aprsis_msgno = a + 1
260-
258+
self.aprsis_msgno = self.aprsis_msgno + 1
261259
# The message counter needs to support both old and new formats
262260
# old format = 5 digits, numeric 00000...99999
263261
# new format = 2 characters, alpha AA...ZZ

src/send_and_receive_single_packet.robot

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ${callsign} YOURCALLSIGN
1717
# This is the message that we will send out to WXBOT
1818
${message} ${callsign}>APRS::WXBOT${SPACE}${SPACE}${SPACE}${SPACE}:tomorrow
1919

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

2323
*** Test Cases ***

0 commit comments

Comments
 (0)