Functional with bare-bones sfox_tx executable.

This commit is contained in:
Joe Taylor
2024-03-02 16:01:55 -05:00
parent 5948c0d024
commit 2f600ae198
3 changed files with 13 additions and 2 deletions
+3 -1
View File
@@ -10304,7 +10304,7 @@ Transmit:
QString foxCall=m_config.my_callsign() + " ";
::memcpy(foxcom_.mycall, foxCall.toLatin1(),sizeof foxcom_.mycall); //Copy Fox callsign into foxcom_
bool bSuperFox=m_config.superFox();
qDebug() << "bb" << foxcom_.nslots << foxcom_.mycall << foxcom_.cmsg[0];
// qDebug() << "bb" << foxcom_.nslots << foxcom_.mycall << foxcom_.cmsg[0];
char cmnd[120];
foxgen_(&bSuperFox, cmnd, 120);
if(bSuperFox) {
@@ -10892,5 +10892,7 @@ void MainWindow::sfox_tx(QString t)
p2.start("sfox_tx", QStringList {t});
p2.waitForFinished();
QString t2=p2.readAllStandardOutput();
t2=t2.left(t2.length()-2);
// qDebug() << "aa" << QDateTime::currentMSecsSinceEpoch() - ms0 << t2;
qDebug() << "aa" << t2;
}