Add support for FT-3D GPS

This commit is contained in:
Scott Weis KB2EAR 2020-02-09 12:40:52 -05:00
parent 0bfe60bf46
commit 487308f523
2 changed files with 4 additions and 0 deletions

View file

@ -139,6 +139,7 @@ void CAPRSWriter::write(const unsigned char* source, const char* type, unsigned
switch (radio) {
case 0x24U:
case 0x28U:
case 0x30U:
symbol = '[';
break;
case 0x25U:

View file

@ -256,6 +256,9 @@ void CGPS::transmitGPS(const unsigned char* source)
case 0x29U:
::strcpy(radio, "FTM-100D");
break;
case 0x30U:
::strcpy(radio, "FT-3D");
break;
default:
::sprintf(radio, "0x%02X", m_buffer[4U]);
break;