0.0.0.73a

This commit is contained in:
John Wiseman 2024-10-15 16:25:32 +01:00
parent 87303e44ee
commit cc161241c3
2 changed files with 3 additions and 2 deletions

View file

@ -541,12 +541,12 @@ void SMUpdateBusyDetector(int LR, float * Real, float *Imag)
if (blnBusyStatus && !blnLastBusyStatus[chan]) if (blnBusyStatus && !blnLastBusyStatus[chan])
{ {
Debugprintf("Ch %d Busy True", chan); // Debugprintf("Ch %d Busy True", chan);
updateDCD(chan, TRUE); updateDCD(chan, TRUE);
} }
else if (blnLastBusyStatus[chan] && !blnBusyStatus) else if (blnLastBusyStatus[chan] && !blnBusyStatus)
{ {
Debugprintf("Ch %d Busy False", chan); // Debugprintf("Ch %d Busy False", chan);
updateDCD(chan, FALSE); updateDCD(chan, FALSE);
} }
blnLastBusyStatus[chan] = blnBusyStatus; blnLastBusyStatus[chan] = blnBusyStatus;

1
ofdm.c
View file

@ -200,6 +200,7 @@ extern int LastDataFrameType; // Last data frame processed (for Memory ARQ, et
extern int intNAKctr; extern int intNAKctr;
extern int intACKctr; extern int intACKctr;
extern int intTimeouts; extern int intTimeouts;
void ARDOPSampleSink(short Sample);
extern UCHAR goodReceivedBlocks[128]; extern UCHAR goodReceivedBlocks[128];
extern UCHAR goodReceivedBlockLen[128]; extern UCHAR goodReceivedBlockLen[128];