mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-05-06 21:32:14 +02:00
feat: serial kiss
This commit is contained in:
@@ -99,7 +99,9 @@ namespace Utils {
|
||||
|
||||
if (beaconUpdate) {
|
||||
display_toggle(true);
|
||||
Serial.println("-- Sending Beacon to APRSIS --");
|
||||
|
||||
Utils::println("-- Sending Beacon to APRSIS --");
|
||||
|
||||
STATION_Utils::deleteNotHeard();
|
||||
|
||||
activeStations();
|
||||
@@ -232,4 +234,16 @@ namespace Utils {
|
||||
}
|
||||
}
|
||||
|
||||
void print(String text) {
|
||||
if (!Config.tnc.enableSerial) {
|
||||
Serial.print(text);
|
||||
}
|
||||
}
|
||||
|
||||
void println(String text) {
|
||||
if (!Config.tnc.enableSerial) {
|
||||
Serial.println(text);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user