-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug fixes #109
base: master
Are you sure you want to change the base?
Bug fixes #109
Conversation
Noise blanker was not updated when selected. New coefficients taken from dl1ycf experiments with pihpsdr.
During extensive monitoring of HL2 packets to/from linHPSDR, it was noted that sometimes there were delays in packets being processed by linHPSDR. This gives high priority to the socket
Not a bug fix. Move repeated mode calls into a query function in transmitter.c
Perhaps this is by design? However, currently, the radio_info button for CAT displays active when CAT daemon is enabled. This only sets active when a client has connected to that RX cat daemon.
audio.c
Outdated
@@ -1035,7 +1004,7 @@ fprintf(stderr,"mic_read_thread: ALSA: mic_buffer_size=%d\n",radio->local_microp | |||
//g_print("mic_read_thread: -EPIPE: snd_pcm_prepare\n"); | |||
if ((rc = snd_pcm_prepare (r->record_handle)) < 0) { | |||
g_print("mic_read_thread: ALSA: cannot prepare audio interface for use %d (%s)\n", rc, snd_strerror (rc)); | |||
return rc; | |||
//return rc; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dubious change. This changes the flow, this function should abort on error. Correct would be a plain return;
This has merge conflicts, also there is the change in return flow. Putting on the backlog, but it looks like there's many valuable fixes in there. |
@andreasdotorg thanks for your review. I believe I have resolved the conflict. |
Commit titles describe changes made. Sticking to one fix per commit.