Skip to content

Commit

Permalink
Add Dorji DRA818 modules (VHF and UHF variants)
Browse files Browse the repository at this point in the history
Also works with NiceRF SA818 modules
  • Loading branch information
JeroenVreeken committed Feb 22, 2017
1 parent 6c34221 commit 70127b6
Show file tree
Hide file tree
Showing 9 changed files with 749 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ SUBDIRS = macros include lib \
## Static list of distributed directories. $(BACKEND_LIST) is dynamically
## assigned by 'configure' so list rig backends statically.
DIST_SUBDIRS = macros include lib src c++ bindings tests doc android scripts \
adat alinco aor drake dummy flexradio icom icmarine jrc kachina kenwood kit \
adat alinco aor drake dorji dummy flexradio icom icmarine jrc kachina kenwood kit \
lowe pcr prm80 racal rft rs skanti tapr tentec tuner uniden wj yaesu \
winradio \
$(ROT_BACKEND_LIST)
Expand Down
3 changes: 2 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ dnl added to AC_CONFIG_FILES near the end of this file. See README.developer
dnl Beware of duplication should a backend directory include both rig and
dnl rotor definitions, e.g. "dummy". Optional backends will not be listed
dnl here but will be added later, e.g. "winradio".
BACKEND_LIST="adat alinco aor drake dummy flexradio icom icmarine jrc kachina kenwood kit lowe pcr prm80 racal rft rs skanti tapr tentec tuner uniden wj yaesu"
BACKEND_LIST="adat alinco aor dorji drake dummy flexradio icom icmarine jrc kachina kenwood kit lowe pcr prm80 racal rft rs skanti tapr tentec tuner uniden wj yaesu"
ROT_BACKEND_LIST="amsat ars celestron cnctrk easycomm ether6 fodtrack gs232a heathkit m2 rotorez sartek spid ts7400 prosistel"

dnl See README.release on setting these values
Expand Down Expand Up @@ -769,6 +769,7 @@ ether6/Makefile
scripts/Makefile
android/Makefile
prosistel/Makefile
dorji/Makefile
hamlib.pc])

AC_OUTPUT
Expand Down
6 changes: 6 additions & 0 deletions dorji/Makefile.am
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
47 changes: 47 additions & 0 deletions dorji/dorji.c
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;
}

30 changes: 30 additions & 0 deletions dorji/dorji.h
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 */
Loading

0 comments on commit 70127b6

Please sign in to comment.