From d3b56d98eff90061233daf53ca977b2a5e7a05e7 Mon Sep 17 00:00:00 2001 From: Matteo Golin Date: Tue, 3 Mar 2026 12:46:29 -0500 Subject: [PATCH] Remove my hard-coded callsign to avoid its unintentional use by unlicensed operators --- transmit.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/transmit.py b/transmit.py index 80dd034..b34bb99 100644 --- a/transmit.py +++ b/transmit.py @@ -2,8 +2,9 @@ from rn2483 import Parameters, Radio import time +CALLSIGN: str = "??????" TRANSMIT_DATA: str = ( - "VA3INI - This is a test message to test the functionality of the RN2483 transceiver with a long packet containing plenty of data - VA3INI - Packet number follows" + f"{CALLSIGN} - This is a test message to test the functionality of the RN2483 transceiver with a long packet containing plenty of data - {CALLSIGN} - Packet number follows" )