From 2e05e120302a93ccb2ec8615bf57b1735b3f86a2 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 7 Jun 2021 12:57:23 -0400 Subject: [PATCH] Increase size of iwave[] buffer for 12000 Hz sample rate. --- map65/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map65/mainwindow.cpp b/map65/mainwindow.cpp index 947f25969..f3d08f2a1 100644 --- a/map65/mainwindow.cpp +++ b/map65/mainwindow.cpp @@ -23,7 +23,7 @@ #define NFFT 32768 -short int iwave[2*60*11025]; //Wave file for Tx audio +short int iwave[2*60*12000]; //Wave file for Tx audio int nwave; //Length of Tx waveform bool btxok; //True if OK to transmit bool bTune;