forked from Hamlib/Hamlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Dorji DRA818 modules (VHF and UHF variants)
Also works with NiceRF SA818 modules
- Loading branch information
1 parent
6c34221
commit 70127b6
Showing
9 changed files
with
749 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
DORJISRC = dorji.c dorji.h dra818.c dra818.h | ||
|
||
noinst_LTLIBRARIES = libhamlib-dorji.la | ||
libhamlib_dorji_la_SOURCES = $(DORJISRC) | ||
|
||
EXTRA_DIST = Android.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Hamlib Dorji backend - main file | ||
* Copyright (c) 2017 by Jeroen Vreeken | ||
* | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
* | ||
*/ | ||
|
||
#ifdef HAVE_CONFIG_H | ||
#include "config.h" | ||
#endif | ||
|
||
#include <stdlib.h> | ||
#include <string.h> /* String function definitions */ | ||
#include <unistd.h> /* UNIX standard function definitions */ | ||
|
||
#include "hamlib/rig.h" | ||
#include "register.h" | ||
|
||
#include "dorji.h" | ||
|
||
/* | ||
* initrigs_dorji is called by rig_backend_load | ||
*/ | ||
DECLARE_INITRIG_BACKEND(dorji) | ||
{ | ||
rig_debug(RIG_DEBUG_VERBOSE, "dorji: _init called\n"); | ||
|
||
rig_register(&dra818u_caps); | ||
rig_register(&dra818v_caps); | ||
|
||
return RIG_OK; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Hamlib Dorji backend - main header | ||
* Copyright (c) 2017 by Jeroen Vreeken | ||
* | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
* | ||
*/ | ||
|
||
#ifndef _DORJI_H | ||
#define _DORJI_H 1 | ||
|
||
#include "hamlib/rig.h" | ||
|
||
extern const struct rig_caps dra818u_caps; | ||
extern const struct rig_caps dra818v_caps; | ||
|
||
#endif /* _DORJI_H */ |
Oops, something went wrong.