Add mode AC handling, and clean up the parsers and serializers to avoid duplication.

This commit is contained in:
Ian Gulliver
2016-02-27 21:50:15 -08:00
parent b7e32d1b48
commit 92334724f0
10 changed files with 176 additions and 296 deletions

View File

@@ -17,8 +17,9 @@ message AdsbPacket {
message Adsb {
oneof record {
AdsbHeader header = 1;
AdsbPacket mode_s_short = 2;
AdsbPacket mode_s_long = 3;
AdsbPacket mode_ac = 2;
AdsbPacket mode_s_short = 3;
AdsbPacket mode_s_long = 4;
}
}