From d9b358a4310904e96643bac988df14f31424d46f Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Thu, 24 Jun 2021 08:40:56 -0400 Subject: [PATCH] try 4 --- afsk/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/afsk/main.c b/afsk/main.c index a2820200..1310d693 100644 --- a/afsk/main.c +++ b/afsk/main.c @@ -2090,7 +2090,7 @@ void get_tlm_fox() { // { for (i = 0; i < parityLen; i++) { for (int j = 0; j < rsFrames; j++) { - if ((uptime != 0) || (i % 3 != 0)) // don't correctly update parties if uptime is 0 so the frame will fail the FEC check and be discarded + if ((uptime != 0) || (i % 4 != 0)) // don't correctly update parties if uptime is 0 so the frame will fail the FEC check and be discarded data10[ctr2++] = (Encode_8b10b[rd][((int) parities[j][i])] & 0x3ff); nrd = (Encode_8b10b[rd][((int) parities[j][i])] >> 10) & 1; // printf ("data10[%d] = encoded parities[%d][%d] = %x \n",