WIP: Layer 2-Implementierung #6

Draft
thomas wants to merge 39 commits from layer2_dev into main
Showing only changes of commit f85bb7f83e - Show all commits

View file

@ -12,6 +12,16 @@
/*** LAYER 2 CONFIG ***/ /*** LAYER 2 CONFIG ***/
#define MY_CALL undefined // define MY_CALL to your call sign as a C string, e.g. "DL5TKL" #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 stations 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 ***/ /*** TIMING CONFIG ***/