Fix remote gateway for DR-1X

This commit is contained in:
Andy CA6JAU 2018-10-23 21:59:10 -03:00
parent 17a158e804
commit 52a7f63cdb
2 changed files with 2 additions and 1 deletions

View file

@ -1093,7 +1093,7 @@ void CYSFControl::writeNetwork()
if (m_remoteGateway) {
fich.setVoIP(false);
fich.setMR(YSF_MR_NOT_BUSY);
fich.setMR(YSF_MR_DIRECT);
} else {
fich.setVoIP(true);
fich.setMR(YSF_MR_BUSY);

View file

@ -46,6 +46,7 @@ const unsigned char YSF_CM_GROUP1 = 0x00U;
const unsigned char YSF_CM_GROUP2 = 0x01U;
const unsigned char YSF_CM_INDIVIDUAL = 0x03U;
const unsigned char YSF_MR_DIRECT = 0x00U;
const unsigned char YSF_MR_NOT_BUSY = 0x01U;
const unsigned char YSF_MR_BUSY = 0x02U;