From c7f0199cddc5116bb15b947ee0d6a8a761e667d3 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Sat, 3 Apr 2021 16:13:32 -0500 Subject: [PATCH] Configuration file re-added with new, correct form. --- ir-aprsisd.cfg | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 ir-aprsisd.cfg diff --git a/ir-aprsisd.cfg b/ir-aprsisd.cfg new file mode 100644 index 0000000..6934310 --- /dev/null +++ b/ir-aprsisd.cfg @@ -0,0 +1,51 @@ +[inReach] +User = Your inReach feed user +#If this is defined, we will authenticate to the inReach service. +# If it is not, we will assume public access is ok. +#Password = Your inReach feed password, if required + +# This should be the location of your KML feed. +URL = https://share.garmin.com/Feed/Share/%(User)s + +[APRS] +#This SSID is used for logging into APRS-IS, and also as a base ID for +# generating callsigns for devices. The first device found will be this +# SSID, the next will be this ID + 1, and so on. If you define a [Devices] +# section, it is _only_ used for the login, and the device mapping must be +# given in full in the [Devices] section. +SSID = N0CALL +# If you don't have a password, you can use the --genpass command-line +# option to calculate it. +Password = 1234 +Port = 14580 + +#If the separator is /, your icon will come from the primary symbol table. +# if it is \, it will draw from the secondary table. +Separator = / +#This character represents an APRS icon from the table tied to Separator. +Symbol = ( + +#This information is included at the end of each packet, along with some +# other data. +Comment = APRS-IS KML forwarder, by K0SIN + +#Define this section if you'd like to enforce an SSID to IMEI mapping. +# It must contain all devices you want to publish. Anything without a +# mapping defined will be ignored if this section exists. +#[Devices] +#N0CALL-12 = 987654321987654 +#N0CALL-15 = 987654321987656 +#N0CALL-8 = 092847784398753 + +[General] + +# Frequency in seconds with which to log packet forwarding stats to STDOUT +# If this is less than Period, stats will only be logged every Period seconds. +# Comment it out to skip printing packet stats entirely. +Logstats = 300 + +# KML polling interval in seconds. +Period = 300 + + +