From f85bb7f83e526a558d445db899977b9f66be35d5 Mon Sep 17 00:00:00 2001 From: Thomas Kolb Date: Thu, 12 Dec 2024 19:56:48 +0100 Subject: [PATCH] Update config.h.template to fix CI builds --- impl/src/config.h.template | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/impl/src/config.h.template b/impl/src/config.h.template index b9ffc23..aadb453 100644 --- a/impl/src/config.h.template +++ b/impl/src/config.h.template @@ -12,6 +12,16 @@ /*** LAYER 2 CONFIG ***/ #define MY_CALL undefined // define MY_CALL to your call sign as a C string, e.g. "DL5TKL" +#define PEER_CALL "TESTPEER" // define PEER_CALL to the remote station’s call sign as a C string, e.g. "DL5TKL-1" + +#define RETRANSMIT_TIMEOUT_MS 1000 +#define CONNECTION_TIMEOUT_MS 10000 + +#define BEACON_INTERVAL_MS 5000 + +#define MIN_INTERVAL_TIME_MS 10 + +#define IPV6_NET "fd70::" // the IPv6 "base address". The HAM64 address will be encoded into the lower 64 bits. /*** TIMING CONFIG ***/