From e2f12ebff1ae3ad368a0501347044993495cef5f Mon Sep 17 00:00:00 2001 From: sh123 Date: Sun, 11 Dec 2022 18:34:54 +0200 Subject: [PATCH] Comments --- config.h | 2 +- esp32_loraprs.ino | 2 +- loraprs_config.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config.h b/config.h index b7d07be..9c6f30d 100644 --- a/config.h +++ b/config.h @@ -92,7 +92,7 @@ #define CFG_RF_TO_IS true // forward packets from radio to internet #define CFG_IS_TO_RF false // forward packets from internet to radio based on CFG_APRS_FILTER #define CFG_BEACON false // enable perdiodic beacon from CFG_APRS_RAW_BKN -#define CFG_TEXT_PACKETS false // enable aprs text packets instead of binary for interoperability with other projects (disables KISS + AX.25!) +#define CFG_TEXT_PACKETS false // enable aprs TNC2 text packets instead of binary for interoperability with other projects (disables KISS + AX.25!) #define CFG_TEXT_PACKETS_PREFIX false // // true - enable aprs-lora 3 byte prefix '<', 0xff, 0x01 // Frequency correction for narrow band bandwidths diff --git a/esp32_loraprs.ino b/esp32_loraprs.ino index 5e08146..825e0cf 100644 --- a/esp32_loraprs.ino +++ b/esp32_loraprs.ino @@ -82,7 +82,7 @@ void initializeConfig(LoraPrs::Config &cfg) { cfg.EnableIsToRf = CFG_IS_TO_RF; // send data from aprsis to rf cfg.EnableRepeater = CFG_DIGIREPEAT; // digirepeat incoming packets cfg.EnableBeacon = CFG_BEACON; // enable periodic AprsRawBeacon beacon to rf and aprsis if rf to aprsis is enabled - cfg.EnableTextPackets = CFG_TEXT_PACKETS; // enables text packets and disables KISS+AX25 binary frames for interoperability + cfg.EnableTextPackets = CFG_TEXT_PACKETS; // enables TNC2 text packets and disables KISS+AX25 binary frames for interoperability cfg.EnableTextPacketsPrefix = CFG_TEXT_PACKETS_PREFIX; // enable aprs-lora 3 byte prefix '<', 0xff, 0x01 // kiss diff --git a/loraprs_config.h b/loraprs_config.h index 0b3916a..d8106e2 100644 --- a/loraprs_config.h +++ b/loraprs_config.h @@ -67,7 +67,7 @@ struct Config bool EnableIsToRf; // true - enable APRS-IS to RF submission bool EnableRepeater; // true - digirepeat incoming packets based on WIDEn-n paths bool EnableBeacon; // true - send AprsRawBeacon to RF and APRS-IS if EnableRfToIs is true - bool EnableTextPackets; // true - use text plain messages insead of AX25 binary frames for interoperability with other projects + bool EnableTextPackets; // true - use TNC2 text plain messages insead of AX25 binary frames for interoperability with other projects bool EnableTextPacketsPrefix; // true - enable aprs-lora 3 byte prefix '<', 0xff, 0x01 // external ptt tx control