From 99902604185b9586c78d63a9919cdee138e4dcea Mon Sep 17 00:00:00 2001 From: Mateusz Lubecki Date: Sat, 28 Sep 2019 13:53:41 +0200 Subject: [PATCH] config for sr8wxo and sr9wxg --- include/sr8wxo.config | 116 ++++++++++++++++++++++++++++++++++++++++++ include/sr9wxg.config | 4 +- 2 files changed, 118 insertions(+), 2 deletions(-) create mode 100644 include/sr8wxo.config diff --git a/include/sr8wxo.config b/include/sr8wxo.config new file mode 100644 index 0000000..1e0a40c --- /dev/null +++ b/include/sr8wxo.config @@ -0,0 +1,116 @@ +/* + * config.h + * + * Created on: 03.07.2017 + * Author: mateusz + */ + +#ifndef STATION_CONFIG_H_ +#define STATION_CONFIG_H_ + +// Only for debugging +//#define _DBG_TRACE + +// Uncomment to enable all meteo functionality. TX20 anemometer, dallas termometer, MS5611 pressure sens +//#define _METEO +#define _DIGI // Comment this do disable WIDE1-1 digipeating +//#define _DIGI_ONLY_789 + +//#define _DALLAS_AS_TELEM +//#define _VICTRON + +//#define _MUTE_RF // TODO: Not yet implemented - This will make station RXonly and disable all data transmission +//#define _MUTE_OWN // TODO: Not yet implemented - This will disable all self-generated packets (wx, telemetry, beacon) + // and switch device to "pure" kiss TNC operation. Packets from PC will be transmitted normally. + +// Coordines should be in APRS decimal format DDDMM.SS for Longitude and DDMM.SS for latitude +#define _CALL "SR8WXO" +#define _SSID 0 +#define _LAT 4944.20 +#define _LATNS 'N' +#define _LON 02150.45 +#define _LONWE 'E' +#define _COMMENT "DigiW1 - Korczyna Dzialy n. Krosno - Planned WX" + +// You can use only one of these below defines to choose symbol. Meteo data are are always transmitted with blue WX symbol +//#define _SYMBOL_DIGI // uncomment if you want digi symbol(green star with D inside) +#define _SYMBOL_WIDE1_DIGI // uncomment if you want 'little' digi symbol (green star with digit 1 overlaid) +//#define _SYMBOL_HOUSE // uncomment if you want house symbol +//#define _SYMBOL_RXIGATE // uncomment if you want rxigate symbol (black diamond with R) +//#define _SYMBOL_IGATE // uncomment if you want igate symol (black diamond with I) + +// Or you can keep commented all symbol defines and choose custom one based on data from APRS symbols table +//#define _SYMBOL_F '/' +//#define _SYMBOL_S '#' + +// Uncomment one of these two defines to choose what path You want. If you uncommend both of them or +// if you keep both commended path will be completely disabled. CALL-S>AKLPRZ:data +//#define _WIDE1_PATH // CALL-S>AKLPRZ,WIDE1-1:data +//#define _WIDE21_PATH // CALL-S>AKLPRZ,WIDE2-1:data + +// Comment this to disable beacon auto sending during startup (this can be risky if RF feedback occur) +//#define _BCN_ON_STARTUP + +#define _WX_INTERVAL 6 // WX packet interval in minutes +#define _BCN_INTERVAL 5 // Own beacon interval in minutes + +//#define _PTT_PUSHPULL // Uncomment this if you want PTT line to work as Push-pull instead of Open Drain +#define _SERIAL_BAUDRATE 9600 + +// Transmitting delay +#define _DELAY_BASE 2 // * 50ms. For example setting 10 gives 500msec delay. Maximum value is 20 +//#define _RANDOM_DELAY // adds random delay TO fixed time set by _DELAY_BASE. This additional time can be + // from 100ms up to 1 sec in 100ms steps. Values are drawn from samples going from ADC + // so it is better to use Unsquelched output in radio to provide much more randomness +//After waiting time declared above ParaTNC will check DCD (Data Carrier Detect) flag, which works as some +//kind of semaphore. If radio channel is not occupied by any other transmission TX will be keyed up immediately, +//otherwise software will wait for clear conditions. + +// Few IMPORTANT hints about setting transmit delay properly. +// +// Transmit delay is key parameter to maintain RF network free from packet losses and collisions. If your station will be +// installed on tall object, without any other digi's close to it, you can set _DELAY_BASE to very low value and disable +// _RANDOM_DELAY. If you wanna rather auxiliary station, witch should only fill gap in RF coverage in small area, then +// _DELAY_BASE parameter should be not less than 12 (600msec), the smallest range the higher _DELAY_BASE should be. +// Additionally for gapfillers (auxiliary stations) _RANDOM_DELAY schould be enabled. +// +// This delay will ensure that while other station will be transmitting repeated packets from mobile, Yours will keep +// always quiet and won't jam RF network. This greatly improve DCD based access to channel. Various controllers uses +// various lenght of preamble, some of them produce signal which might be impossible to decode by ParaTNC, so DCD +// is only one part of effective multiaccess to medium. + + +// Do not touch this +#if defined (_SYMBOL_DIGI) && !defined (_SYMBOL_WIDE1_DIGI) && !defined (_SYMBOL_HOUSE) && !defined (_SYMOL_RXIGATE) &&\ + !defined (_SYMBOL_IGATE) +#define _SYMBOL_F '/' +#define _SYMBOL_S '#' +#elif !defined (_SYMBOL_DIGI) && defined (_SYMBOL_WIDE1_DIGI) && !defined (_SYMBOL_HOUSE) && !defined (_SYMOL_RXIGATE) &&\ + !defined (_SYMBOL_IGATE) +#define _SYMBOL_F '1' +#define _SYMBOL_S '#' +#elif !defined (_SYMBOL_DIGI) && !defined (_SYMBOL_WIDE1_DIGI) && defined (_SYMBOL_HOUSE) && !defined (_SYMOL_RXIGATE) &&\ + !defined (_SYMBOL_IGATE) +#define _SYMBOL_F '/' +#define _SYMBOL_S '-' +#elif !defined (_SYMBOL_DIGI) && !defined (_SYMBOL_WIDE1_DIGI) && !defined (_SYMBOL_HOUSE) && defined (_SYMOL_RXIGATE) &&\ + !defined (_SYMBOL_IGATE) +#define _SYMBOL_F 'I' +#define _SYMBOL_S '&' +#elif !defined (_SYMBOL_DIGI) && !defined (_SYMBOL_WIDE1_DIGI) && !defined (_SYMBOL_HOUSE) && !defined (_SYMOL_RXIGATE) &&\ + defined (_SYMBOL_IGATE) +#define _SYMBOL_F 'R' +#define _SYMBOL_S '&' +#elif !defined (_SYMBOL_F) && !defined (_SYMBOL_S) +#error "Missing symbol configuration in station_config.h" +#elif defined (_SYMBOL_F) && defined (_SYMBOL_S) +#else +#error "Wrong symbol configuration in station_config.h" +#endif +#if defined (_METEO) && !defined (_DIGI) +#define _DIGI +#endif + + + +#endif /* STATION_CONFIG_H_ */ diff --git a/include/sr9wxg.config b/include/sr9wxg.config index 306e9d5..bf9464a 100644 --- a/include/sr9wxg.config +++ b/include/sr9wxg.config @@ -46,12 +46,12 @@ // Uncomment one of these two defines to choose what path You want. If you uncommend both of them or // if you keep both commended path will be completely disabled. CALL-S>AKLPRZ:data //#define _WIDE1_PATH // CALL-S>AKLPRZ,WIDE1-1:data -#define _WIDE21_PATH // CALL-S>AKLPRZ,WIDE2-1:data +//#define _WIDE21_PATH // CALL-S>AKLPRZ,WIDE2-1:data // Comment this to disable beacon auto sending during startup (this can be risky if RF feedback occur) //#define _BCN_ON_STARTUP -#define _WX_INTERVAL 4 // WX packet interval in minutes +#define _WX_INTERVAL 3 // WX packet interval in minutes #define _BCN_INTERVAL 15 // Own beacon interval in minutes //#define _PTT_PUSHPULL // Uncomment this if you want PTT line to work as Push-pull instead of Open Drain