Handle moving to an unassigned DG-ID.

This commit is contained in:
Jonathan Naylor 2020-10-04 13:48:12 +01:00
parent 9c1e4239ff
commit 91ec066418
2 changed files with 5 additions and 1 deletions

View file

@ -528,6 +528,10 @@ int CDGIdGateway::run()
else if (fromRF && state == DS_LINKED && netState != DS_LINKED)
nPips = 3U;
state = netState;
} else {
if (fromRF && state == DS_LINKED)
nPips = 2U;
state = DS_NOTLINKED;
}
if (ms < 5U)

View file

@ -19,6 +19,6 @@
#if !defined(VERSION_H)
#define VERSION_H
const char* VERSION = "20200929";
const char* VERSION = "20201004";
#endif