From f6e7f9e5e88c350e4232021a01800428d111d02a Mon Sep 17 00:00:00 2001 From: Steve Franke Date: Thu, 5 Jul 2018 16:14:10 -0500 Subject: [PATCH] Make the length of ft8 messages 38 characters in mainwindow.cpp. --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 8584e5ada..dda0e23e8 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3487,8 +3487,8 @@ void MainWindow::guiUpdate() // if(m_config.bGenerate77()) m_isync=2; char ft8msgbits[75 + 12]; //packed 75 bit ft8 message plus 12-bit CRC // TEMPORARY - for now, just copy 22-bit message to 37-bit messageft8 - char messageft8[44]; //padded with 7 characters, like messsage. - char msgsentft8[44]; + char messageft8[38]; + char msgsentft8[38]; // Only need to send the first 37 chars to Fortran, right? strncpy(&messageft8[0],&message[0],22); genft8_(messageft8, MyGrid, &bcontest, &m_i3, &m_n3, &m_isync, msgsentft8, const_cast (ft8msgbits), const_cast (itone), 37, 6, 37);