pull/17/head
Guenael 2017-06-23 10:45:14 -04:00
rodzic 99d2bd2ffe
commit ac23d2dcfe
2 zmienionych plików z 2 dodań i 4 usunięć

Wyświetl plik

@ -1,7 +1,5 @@
#CFLAGS= -Wall -O3 -ffast-math -std=gnu99
CC = gcc
CFLAGS= -Wall -O2 -std=gnu99
CFLAGS= -Wall -O3 -ffast-math -std=gnu99
LDFLAGS = -L/usr/lib
LIBS = -lusb-1.0 -lrtlsdr -lpthread -lfftw3f -lcurl -lm

Wyświetl plik

@ -165,7 +165,7 @@ static void rtlsdr_callback(unsigned char *samples, uint32_t samples_count, void
/* Decimation R=6400 */
decimationIndex++;
if (decimationIndex <= DOWNSAMPLING) { // FIXME check !!!
if (decimationIndex <= DOWNSAMPLING) {
continue;
}