Cleanup protocols that are not ready for use
All checks were successful
Run tests / test (1.25) (push) Successful in 16s
Run tests / test (stable) (push) Successful in 17s

This commit is contained in:
2026-02-22 21:16:25 +01:00
parent 32f6c38c13
commit 824bde5d55
10 changed files with 0 additions and 1584 deletions

View File

@@ -1,21 +0,0 @@
package fields
// EmergencyPriorityStatus is the Emergency Priority Status definition
//
// Specified in Doc 9871 / Table B-2-97a
type EmergencyPriorityStatus byte
const (
EPSNoEmergency EmergencyPriorityStatus = iota // No emergency
EPSGeneralEmergency // General emergency
EPSLifeguardMedical // Lifeguard/medical emergency
EPSMinimumFuel // Minimum fuel
EPSNoCommunication // No communications
EPSUnlawfulInterference // Unlawful interference
EPSDownedAircraft // Downed aircraft
EPSReserved7 // Reserved
)
func ParseEmergencyPriorityStatus(data []byte) EmergencyPriorityStatus {
return EmergencyPriorityStatus((data[1] & 0xE0) >> 5)
}