Skip to content
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

Add capability to send rigctld commands that return more than one result #63

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix "implicit function definition" C compiler warning
'rigListCb' was not defined before use, which produces an annoyingly verbose warning message twice in every build. Since the fix was so easy and should have no side-effects I put it in here.
  • Loading branch information
DougCollinge committed Nov 22, 2020
commit b98fed34bd980248470d87291db7c3f753a5acf7
2 changes: 2 additions & 0 deletions rigcontrol/hamlib/helpers.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// +build libhamlib

#include <hamlib/rig.h>
extern void rigListCb();


void setBaudRate(RIG *r, int rate) {
r->state.rigport.parm.serial.rate = rate;
Expand Down