diff --git a/Common/APRSFixedIdFrameProvider.cpp b/Common/APRSFixedIdFrameProvider.cpp index b09ae9e..1763b24 100644 --- a/Common/APRSFixedIdFrameProvider.cpp +++ b/Common/APRSFixedIdFrameProvider.cpp @@ -65,6 +65,8 @@ bool CAPRSFixedIdFrameProvider::buildAPRSFramesInt(const CAPRSEntry * entry, std band = "1.2"; else if (entry->getFrequency() >= 420.0) band = "440"; + else if (entry->getFrequency() >= 219.0) + band = "1.25m"; else if (entry->getFrequency() >= 144.0) band = "2m"; else if (entry->getFrequency() >= 50.0) diff --git a/Common/APRSGPSDIdFrameProvider.cpp b/Common/APRSGPSDIdFrameProvider.cpp index 4891a78..78cee71 100644 --- a/Common/APRSGPSDIdFrameProvider.cpp +++ b/Common/APRSGPSDIdFrameProvider.cpp @@ -132,6 +132,8 @@ bool CAPRSGPSDIdFrameProvider::buildAPRSFramesInt(const CAPRSEntry * entry, std: band = "1.2"; else if (entry->getFrequency() >= 420.0) band = "440"; + else if (entry->getFrequency() >= 219.0) + band = "1.25m"; else if (entry->getFrequency() >= 144.0) band = "2m"; else if (entry->getFrequency() >= 50.0)