From 39f523fc85a946f1414f92e885683e9a528c879f Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Fri, 6 Mar 2026 05:25:12 -0500 Subject: [PATCH] Update main.c missing PACSAT conditional --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 78ece5ff..39bbdbfe 100644 --- a/main.c +++ b/main.c @@ -518,7 +518,7 @@ int main(int argc, char * argv[]) { printf("\n FSK Mode, %d bits per frame, %d bits per second, %d ms per frame, %d ms sample period\n", bufLen / (samples * frameCnt), bitRate, frameTime, samplePeriod); - } else if (mode == BPSK) { + } else if ((mode == BPSK) || (mode == PACSAT)) { //// } else { bitRate = 1200;