diff --git a/README b/README index 6ddda4a..abd2ca8 100644 --- a/README +++ b/README @@ -203,6 +203,9 @@ Credits: is more precise and does not vary based on system load or PWM clock frequency. + Michael Tatarinov for adding a patch to get PPM info directly from the + kernel. + [1] PiFM code from http://www.icrobotics.co.uk/wiki/index.php/Turning_the_Raspberry_Pi_Into_an_FM_Transmitter [2] Original WSPR Pi transmitter code by Dan: diff --git a/wspr.cpp b/wspr.cpp index ec95c56..eb39bfb 100644 --- a/wspr.cpp +++ b/wspr.cpp @@ -921,8 +921,8 @@ void update_ppm( status = ntp_adjtime(&ntx); if (status != TIME_OK) { - cerr << "Error: clock not synchronized" << endl; - return; + //cerr << "Error: clock not synchronized" << endl; + //return; } ppm_new = (double)ntx.freq/(double)(1 << 16); /* frequency scale */