git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1636 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.0
Stéphane Fillod, F8CFE 2003-12-24 09:07:52 +00:00
rodzic 99a524472c
commit c8cd6c4212
2 zmienionych plików z 9 dodań i 3 usunięć

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib Interface - API header
* Copyright (c) 2000-2003 by Stephane Fillod and Frank Singleton
*
* $Id: rig.h,v 1.89 2003-11-19 07:32:10 fillods Exp $
* $Id: rig.h,v 1.90 2003-12-24 09:07:52 fillods Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -696,7 +696,10 @@ typedef enum {
RIG_MODE_WFM = (1<<6), /*!< broadcast wide FM */
RIG_MODE_CWR = (1<<7), /*!< CW reverse sideband */
RIG_MODE_RTTYR = (1<<8), /*!< RTTY reverse sideband */
RIG_MODE_AMS = (1<<9) /*!< Amplitude Modulation Synchronous */
RIG_MODE_AMS = (1<<9), /*!< Amplitude Modulation Synchronous */
RIG_MODE_PKTLSB = (1<<10),/*!< Packet/Digital LSB mode (dedicated port) */
RIG_MODE_PKTUSB = (1<<11),/*!< Packet/Digital USB mode (dedicated port) */
RIG_MODE_PKTFM = (1<<12) /*!< Packet/Digital FM mode (dedicated port) */
} rmode_t;
/** \brief macro for backends, no to be used by rig_set_mode et al. */

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib Interface - toolbox
* Copyright (c) 2000-2003 by Stephane Fillod and Frank Singleton
*
* $Id: misc.c,v 1.30 2003-12-03 01:32:35 n0nb Exp $
* $Id: misc.c,v 1.31 2003-12-24 09:07:52 fillods Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -307,6 +307,9 @@ static struct {
{ RIG_MODE_RTTY, "RTTY" },
{ RIG_MODE_RTTYR, "RTTYR" },
{ RIG_MODE_WFM, "WFM" },
{ RIG_MODE_PKTLSB, "PKTLSB" },
{ RIG_MODE_PKTUSB, "PKTUSB" },
{ RIG_MODE_PKTFM, "PKTFM" },
{ RIG_MODE_NONE, "" },
};