Fix up address type categorization to match the spec.
This commit is contained in:
parent
7c1fed98d2
commit
729d91c1ab
|
@ -158,12 +158,11 @@ typedef enum {
|
|||
ADDR_ADSR_ICAO, /* ADS-R, ICAO address */
|
||||
ADDR_TISB_ICAO, /* TIS-B, ICAO address */
|
||||
|
||||
ADDR_ADSB_OTHER, /* ADS-B, other address format, non-transponder */
|
||||
ADDR_ADSB_OTHER, /* ADS-B, other address format */
|
||||
ADDR_ADSR_OTHER, /* ADS-R, other address format */
|
||||
ADDR_TISB_TRACKFILE, /* TIS-B, Mode A code + track file number */
|
||||
ADDR_TISB_OTHER, /* TIS-B, other address format */
|
||||
|
||||
ADDR_TISB_ANON, /* ADS-R/TIS-B, anonymized address */
|
||||
|
||||
ADDR_UNKNOWN /* unknown address format */
|
||||
} addrtype_t;
|
||||
|
||||
|
|
33
mode_s.c
33
mode_s.c
|
@ -796,11 +796,12 @@ static void setIMF(struct modesMessage *mm)
|
|||
switch (mm->addrtype) {
|
||||
case ADDR_ADSB_ICAO:
|
||||
case ADDR_ADSB_ICAO_NT:
|
||||
// Shouldn't happen, but let's try to handle it
|
||||
mm->addrtype = ADDR_ADSB_OTHER;
|
||||
break;
|
||||
|
||||
case ADDR_TISB_ICAO:
|
||||
mm->addrtype = ADDR_TISB_OTHER;
|
||||
mm->addrtype = ADDR_TISB_TRACKFILE;
|
||||
break;
|
||||
|
||||
case ADDR_ADSR_ICAO:
|
||||
|
@ -1164,39 +1165,43 @@ static void decodeExtendedSquitter(struct modesMessage *mm)
|
|||
// Check CF on DF18 to work out the format of the ES and whether we need to look for an IMF bit
|
||||
if (mm->msgtype == 18) {
|
||||
switch (mm->CF) {
|
||||
case 0: // ADS-B ES/NT devices that report the ICAO 24-bit address in the AA field
|
||||
case 0: // ADS-B Message from a non-transponder device, AA field holds 24-bit ICAO aircraft address
|
||||
mm->addrtype = ADDR_ADSB_ICAO_NT;
|
||||
break;
|
||||
|
||||
case 1: // Reserved for ADS-B for ES/NT devices that use other addressing techniques in the AA field
|
||||
case 1: // Reserved for ADS-B Message in which the AA field holds anonymous address or ground vehicle address or fixed obstruction address
|
||||
mm->addrtype = ADDR_ADSB_OTHER;
|
||||
mm->addr |= MODES_NON_ICAO_ADDRESS;
|
||||
break;
|
||||
|
||||
case 2: // Fine TIS-B message (formats are close enough to DF17 for our purposes)
|
||||
case 2: // Fine TIS-B Message
|
||||
// IMF=0: AA field contains the 24-bit ICAO aircraft address
|
||||
// IMF=1: AA field contains the 12-bit Mode A code followed by a 12-bit track file number
|
||||
mm->source = SOURCE_TISB;
|
||||
mm->addrtype = ADDR_TISB_ICAO;
|
||||
check_imf = 1;
|
||||
break;
|
||||
|
||||
case 3: // Coarse TIS-B airborne position and velocity.
|
||||
// TODO: decode me.
|
||||
// IMF=0: AA field contains the 24-bit ICAO aircraft address
|
||||
// IMF=1: AA field contains the 12-bit Mode A code followed by a 12-bit track file number
|
||||
|
||||
// For now we only look at the IMF bit.
|
||||
mm->source = SOURCE_TISB;
|
||||
mm->addrtype = ADDR_TISB_ICAO;
|
||||
if (getbit(me, 1)) {
|
||||
mm->addr |= MODES_NON_ICAO_ADDRESS;
|
||||
mm->addrtype = ADDR_TISB_OTHER;
|
||||
}
|
||||
if (getbit(me, 1))
|
||||
setIMF(mm);
|
||||
return;
|
||||
|
||||
case 5: // TIS-B messages that relay ADS-B Messages using anonymous 24-bit addresses (format not explicitly defined, but it seems to follow DF17)
|
||||
mm->addrtype = ADDR_TISB_ANON;
|
||||
case 5: // Fine TIS-B Message, AA field contains a non-ICAO 24-bit address
|
||||
mm->addrtype = ADDR_TISB_OTHER;
|
||||
mm->source = SOURCE_TISB;
|
||||
mm->addr |= MODES_NON_ICAO_ADDRESS;
|
||||
break;
|
||||
|
||||
case 6: // ADS-B rebroadcast using the same type codes and message formats as defined for DF = 17 ADS-B messages
|
||||
case 6: // Rebroadcast of ADS-B Message from an alternate data link
|
||||
// IMF=0: AA field holds 24-bit ICAO aircraft address
|
||||
// IMF=1: AA field holds anonymous address or ground vehicle address or fixed obstruction address
|
||||
mm->addrtype = ADDR_ADSR_ICAO;
|
||||
check_imf = 1;
|
||||
break;
|
||||
|
@ -1370,8 +1375,8 @@ static const char *addrtype_to_string(addrtype_t type) {
|
|||
return "TIS-B";
|
||||
case ADDR_TISB_OTHER:
|
||||
return "TIS-B, other addressing scheme";
|
||||
case ADDR_TISB_ANON:
|
||||
return "TIS-B, anonymized address";
|
||||
case ADDR_TISB_TRACKFILE:
|
||||
return "TIS-B, Mode A code and track file number";
|
||||
case ADDR_ADSR_ICAO:
|
||||
return "ADS-R";
|
||||
case ADDR_ADSR_OTHER:
|
||||
|
|
16
net_io.c
16
net_io.c
|
@ -993,18 +993,18 @@ static const char *addrtype_short_string(addrtype_t type) {
|
|||
return "adsb_icao";
|
||||
case ADDR_ADSB_ICAO_NT:
|
||||
return "adsb_icao_nt";
|
||||
case ADDR_ADSB_OTHER:
|
||||
return "adsb_other";
|
||||
case ADDR_TISB_ICAO:
|
||||
return "tisb_icao";
|
||||
case ADDR_TISB_OTHER:
|
||||
return "tisb_other";
|
||||
case ADDR_TISB_ANON:
|
||||
return "tisb_anon";
|
||||
case ADDR_ADSR_ICAO:
|
||||
return "adsr_icao";
|
||||
case ADDR_TISB_ICAO:
|
||||
return "tisb_icao";
|
||||
case ADDR_ADSB_OTHER:
|
||||
return "adsb_other";
|
||||
case ADDR_ADSR_OTHER:
|
||||
return "adsr_other";
|
||||
case ADDR_TISB_OTHER:
|
||||
return "tisb_other";
|
||||
case ADDR_TISB_TRACKFILE:
|
||||
return "tisb_trackfile";
|
||||
default:
|
||||
return "unknown";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue