Better ADIF conformance for ARRL Field Day mode

This change may break N1MM Logger+ integration, notably the CLASS ADIF
field is  populated which may not  be recognized by N1MM  Logger+, nor
interfaces to it.

One exception to  ADIF conformance is that the ARRL_SECT  field may be
populated with  the value DX  despite it  not being a  valid ARRL_SECT
enumeration value. This is done for consistency with N1MM Logger+ ADIF
exports.
This commit is contained in:
Bill Somerville
2019-06-24 00:56:41 +01:00
parent c8fd0b0988
commit 91aa591a71
3 changed files with 52 additions and 41 deletions
+17 -17
View File
@@ -202,23 +202,23 @@ void LogQSO::accept()
, m_myGrid
, xsent
, xrcvd
, LogBook::QSOToADIF (hisCall
, hisGrid
, mode
, rptSent
, rptRcvd
, dateTimeOn
, dateTimeOff
, band
, m_comments
, name
, strDialFreq
, m_myCall
, m_myGrid
, m_txPower
, operator_call
, xsent
, xrcvd));
, m_log->QSOToADIF (hisCall
, hisGrid
, mode
, rptSent
, rptRcvd
, dateTimeOn
, dateTimeOff
, band
, m_comments
, name
, strDialFreq
, m_myCall
, m_myGrid
, m_txPower
, operator_call
, xsent
, xrcvd));
QDialog::accept();
}