modified: rtlsdr_wsprd.c

pull/5/head
Guenael 2016-07-03 00:12:43 -04:00
rodzic 22534cd20a
commit bb5c1292f9
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -655,7 +655,8 @@ int main(int argc, char** argv) {
pthread_cond_init(&dec.ready_cond, NULL);
pthread_mutex_init(&dec.ready_mutex, NULL);
pthread_create(&dongle.thread, NULL, rtlsdr_rx, NULL);
pthread_create(&dec.thread, &dec.tattr, wsprDecoder, NULL);
//pthread_create(&dec.thread, &dec.tattr, wsprDecoder, NULL);
pthread_create(&dec.thread, NULL, wsprDecoder, NULL);
/* Main loop : Wait, read, decode */
while (!rx_state.exit_flag) {