pub fn parse_qso_log(data: &[u8]) -> Result<Vec<QsoEntry>, SdCardError>Expand description
Parses a QSO log TSV file from raw bytes.
Expects plain ASCII/UTF-8 text with tab-separated columns. The first line is treated as a header row and is skipped. Each data row must have exactly 24 columns.
ยงErrors
Returns an SdCardError if a data row has an unexpected column
count.