mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-04-05 14:37:05 +00:00
feat: serial kiss
This commit is contained in:
parent
2a5cc33711
commit
d9629d0929
17 changed files with 408 additions and 221 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue