Delete nxdn_data.c.bkp

This commit is contained in:
lwvmobile 2022-02-21 12:57:28 -05:00 committed by GitHub
parent df14508778
commit c7e52ab4fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 41 deletions

View File

@ -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");
}
}