Reverted default bandwidth value

pull/108/head
Marcin Kondej 2020-03-21 01:26:51 +01:00
rodzic 289452df12
commit 28844723a8
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -21,7 +21,7 @@ Where:
Other options:
* -d dma_channel - Specifies the DMA channel to be used (0 by default), type 255 to disable DMA transfer, CPU will be used instead
* -b bandwidth - Specifies the bandwidth in kHz, 100 by default
* -b bandwidth - Specifies the bandwidth in kHz, 200 by default
* -r - Loops the playback
After transmission has begun, simply tune an FM receiver to chosen frequency, You should hear the playback.

Wyświetl plik

@ -51,7 +51,7 @@ void sigIntHandler(int sigNum)
int main(int argc, char** argv)
{
float frequency = 100.f, bandwidth = 100.f;
float frequency = 100.f, bandwidth = 200.f;
uint16_t dmaChannel = 0;
bool showUsage = true, loop = false;
int opt, filesOffset;