This commit is contained in:
Kurt 2021-02-22 18:22:17 +01:00
parent 01f82d2afb
commit f34d3aaffb
2 changed files with 7 additions and 1 deletions

View File

@ -3,7 +3,7 @@ The purpose of this project is to transfer data (pictures...) via a 2,7kHz SSB c
Now also including RTTY mode. Now also including RTTY mode.
# this is work in progress # this is work in progress
Version 0.72 Version 0.84
Windows 10 (should work on Win7, not tested) Windows 10 (should work on Win7, not tested)
linux Desktop PC, linux Desktop PC,
Odroid SBC Odroid SBC

View File

@ -67,6 +67,8 @@ void dist_function(void* param)
// give all data sources the same priority // give all data sources the same priority
if (++circ >= 5) circ = 0; if (++circ >= 5) circ = 0;
//printf("circ:%d\n", circ);
int len = 0; int len = 0;
switch (circ) switch (circ)
{ {
@ -88,6 +90,10 @@ void dist_function(void* param)
if (len > 0) _sendToModulator(rxdata, len); if (len > 0) _sendToModulator(rxdata, len);
} }
else
{
sleep_ms(100);
}
} }
printf("Distributor exits\n"); printf("Distributor exits\n");