From 455a7a9329296c43d7dfaee55d74df59b7504d9c Mon Sep 17 00:00:00 2001 From: lwvmobile <59371473+lwvmobile@users.noreply.github.com> Date: Sun, 20 Feb 2022 16:24:55 -0500 Subject: [PATCH] Delete nxdn_data.c.bkp --- src/nxdn_data.c.bkp | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 src/nxdn_data.c.bkp diff --git a/src/nxdn_data.c.bkp b/src/nxdn_data.c.bkp deleted file mode 100644 index 5e212bd..0000000 --- a/src/nxdn_data.c.bkp +++ /dev/null @@ -1,41 +0,0 @@ -#include "dsd.h" -#include "nxdn_const.h"//going to test pushing data frames through, but not throught he processMBE portion, want to get those get frames - -void -processNXDNData (dsd_opts * opts, dsd_state * state) -{ - int i, dibit; - //dibit = getDibit (opts, state); - //fprintf (stderr, "D %c \n", dibit + 48); //adding to see what dumps exactly - if (opts->errorbars == 1) - { - fprintf (stderr, "DATA "); - //dibit = getDibit (opts, state); - //fprintf (stderr, "DE %c \n", dibit + 48); //adding to see what dumps exactly - } - - for (i = 0; i < 30; i++) - { - dibit = getDibit (opts, state); -#ifdef NXDN_DUMP - fprintf (stderr, "%c", dibit + 48); -#endif - } -#ifdef NXDN_DUMP - fprintf (stderr, " "); -#endif - - for (i = 0; i < 144; i++) - { - dibit = getDibit (opts, state); - //fprintf (stderr, "%c", dibit + 48); -#ifdef NXDN_DUMP - fprintf (stderr, "%c", dibit + 48); -#endif - } - - if (opts->errorbars == 1) - { - fprintf (stderr, "\n"); - } -}