Further field day ADIF log enhancements

Received exchange exported to SRX_STRING.
This commit is contained in:
Bill Somerville 2019-06-24 16:03:41 +01:00
parent 91aa591a71
commit 17492c45a9
No known key found for this signature in database
GPG Key ID: D864B06D1E81618F
1 changed files with 2 additions and 1 deletions

View File

@ -145,7 +145,8 @@ QByteArray LogBook::QSOToADIF (QString const& hisCall, QString const& hisGrid, Q
// include DX as an ARRL_SECT value even though it is
// not in the ADIF spec ARRL_SECT enumeration, done
// because N1MM does the same
t += " <contest_id:14>ARRL-FIELD-DAY <class:" + QString::number (words.at (0).size ()) + '>'
t += " <contest_id:14>ARRL-FIELD-DAY <SRX_STRING:" + QString::number (xRcvd.size ()) + '>' + xRcvd
+ " <class:" + QString::number (words.at (0).size ()) + '>'
+ words.at (0) + " <arrl_sect:" + QString::number (words.at (1).size ()) + '>' + words.at (1);
}
else if (Configuration::SpecialOperatingActivity::RTTY == config_->special_op_id ())