diff --git a/config/urfd.whitelist b/config/urfd.whitelist index c3d43b0..5793519 100644 --- a/config/urfd.whitelist +++ b/config/urfd.whitelist @@ -4,10 +4,9 @@ # one line per entry # each entry is explicitely authorised (whitelisted) # you can use * as last wildcard character +# no definitions means everyone is authorized # example: -# * -> authorize eveybody # LX* -> authorize all callsign starting with LX # LX3JL -> authorize LX3JL exactly # ############################################################################# -* diff --git a/reflector/M17Protocol.cpp b/reflector/M17Protocol.cpp index 063995c..32e0658 100644 --- a/reflector/M17Protocol.cpp +++ b/reflector/M17Protocol.cpp @@ -82,6 +82,8 @@ void CM17Protocol::Task(void) // push the "first" packet OnDvFramePacketIn(Frame, &Ip); + // leave a space between this pair of frames + std::this_thread::sleep_for(std::chrono::milliseconds(16)); // push the "second" packet OnDvFramePacketIn(secondFrame, &Ip); // push two packet because we need a packet every 20 ms } diff --git a/reflector/Main.h b/reflector/Main.h index 6011cff..f0fb7bf 100644 --- a/reflector/Main.h +++ b/reflector/Main.h @@ -63,7 +63,7 @@ #define VERSION_MAJOR 0 #define VERSION_MINOR 0 -#define VERSION_REVISION 0 +#define VERSION_REVISION 1 // global ------------------------------------------------------