parse_aprs_data_full

Function parse_aprs_data_full 

Source
pub fn parse_aprs_data_full(
    info: &[u8],
    destination: &str,
) -> Result<AprsData, AprsError>
Expand description

Parse any APRS data frame, including Mic-E types that require the AX.25 destination address.

This is the recommended entry point when the full AX.25 packet is available. For Mic-E data type identifiers (`, ', 0x1C, 0x1D), the destination callsign is used to decode the latitude via parse_mice_position. All other types delegate to crate::packet::parse_aprs_data.

ยงErrors

Returns AprsError if the format is unrecognized or data is invalid.