pull/1/head
SP9SKP 2022-01-24 09:08:00 +01:00
rodzic 0e94772f97
commit 0844a52796
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -533,7 +533,7 @@ struct CHAN {
char nr; char nr;
char freq[10]; char freq[10];
char pfreq[10]; char pfreq[10];
int st; unsigned int st;
}; };
@ -5792,7 +5792,7 @@ static void getadc(void)
chan[chno].freq[4]=adcbuf[pos+6]; chan[chno].freq[4]=adcbuf[pos+6];
chan[chno].freq[5]=adcbuf[pos+7]; chan[chno].freq[5]=adcbuf[pos+7];
chan[chno].freq[6]=0; chan[chno].freq[6]=0;
chan[chno].st=(int)adcbuf[pos+8]&0xff-65; chan[chno].st=(unsigned int)((adcbuf[pos+8])&0xff)-65;
switch(chan[chno].st){ switch(chan[chno].st){