Skip to content

Commit

Permalink
fix src/dest in beacon
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanpdx committed Oct 29, 2023
1 parent 03cfe34 commit 18c7e2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oresat_c3/services/beacon.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ def _send_beacon(self):
payload += obj.encode_raw(obj.value)

packet = ax25_pack(
dest=self._src_callsign,
dest=self._dest_callsign,
dest_ssid=0,
src=self._dest_callsign,
src=self._src_callsign,
src_ssid=0,
control=0,
pid=0,
Expand Down

0 comments on commit 18c7e2c

Please sign in to comment.