From 4109d606b598a8ca84ebdbe6d06b740928b4e5bf Mon Sep 17 00:00:00 2001 From: Daniele Forsi IU5HKX Date: Mon, 19 May 2025 23:01:26 +0200 Subject: [PATCH] Fix typos --- rigs/aor/ar7030.c | 2 +- rigs/dummy/aclog.c | 2 +- rigs/dummy/flrig.c | 2 +- rigs/dummy/tci1x.c | 2 +- rigs/elad/elad.c | 2 +- rigs/icom/frame.c | 4 ++-- rigs/icom/ic746.c | 2 +- rigs/icom/ic756.c | 2 +- rigs/icom/ic820h.c | 2 +- rigs/icom/ic821h.c | 2 +- rigs/icom/icom.c | 4 ++-- rigs/jrc/jrc.c | 2 +- rigs/kenwood/kenwood.c | 4 ++-- rigs/kenwood/tmv7.c | 2 +- rigs/kenwood/ts870s.c | 2 +- rigs/kit/drt1.c | 2 +- rigs/kit/elektor507.c | 2 +- rigs/kit/pcrotor.c | 2 +- rigs/uniden/uniden.c | 2 +- rigs/uniden/uniden_digital.c | 4 ++-- rigs/wj/wj8888.c | 2 +- rigs/yaesu/ft757gx.c | 2 +- rigs/yaesu/ft817.c | 4 ++-- rigs/yaesu/ft857.c | 4 ++-- rigs/yaesu/ft891.c | 2 +- rigs/yaesu/ft897.c | 4 ++-- rigs/yaesu/pmr171.c | 4 ++-- rigs/yaesu/vr5000.c | 2 +- rigs/yaesu/vx1700.c | 2 +- rotators/celestron/celestron.c | 2 +- rotators/gs232a/gs232.c | 2 +- rotators/gs232a/gs232a.c | 2 +- rotators/gs232a/gs232b.c | 2 +- rotators/ioptron/rot_ioptron.c | 6 +++--- rotators/m2/rc2800.c | 2 +- rotators/meade/meade.c | 2 +- rotators/prosistel/prosistel.c | 2 +- rotators/spid/spid.c | 2 +- simulators/simts890.c | 2 +- tests/dumpmem.c | 2 +- tests/rigctl_parse.c | 2 +- tests/test2038.c | 2 +- 42 files changed, 52 insertions(+), 52 deletions(-) diff --git a/rigs/aor/ar7030.c b/rigs/aor/ar7030.c index 45be50a72..858dd2f95 100644 --- a/rigs/aor/ar7030.c +++ b/rigs/aor/ar7030.c @@ -485,7 +485,7 @@ static int ar7030_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width) } // fltbw Mem_Page=0 Address=38 - // Filter bandwidth dezimal in Hz. + // Filter bandwidth decimal in Hz. // Filter bandwidth (2 BCD digits : x.x kHz). setMemPtr(rig, 0, 0x38); diff --git a/rigs/dummy/aclog.c b/rigs/dummy/aclog.c index c236003df..52dc49e4d 100644 --- a/rigs/dummy/aclog.c +++ b/rigs/dummy/aclog.c @@ -74,7 +74,7 @@ struct aclog_priv_data struct ext_list *ext_parms; }; -//Structure for mapping aclog dynmamic modes to hamlib modes +//Structure for mapping aclog dynamic modes to hamlib modes //aclog displays modes as the rig displays them struct s_modeMap { diff --git a/rigs/dummy/flrig.c b/rigs/dummy/flrig.c index 505f803bb..7d41e1df9 100644 --- a/rigs/dummy/flrig.c +++ b/rigs/dummy/flrig.c @@ -217,7 +217,7 @@ struct rig_caps flrig_caps = .hamlib_check_rig_caps = HAMLIB_CHECK_RIG_CAPS }; -//Structure for mapping flrig dynmamic modes to hamlib modes +//Structure for mapping flrig dynamic modes to hamlib modes //flrig displays modes as the rig displays them struct s_modeMap { diff --git a/rigs/dummy/tci1x.c b/rigs/dummy/tci1x.c index 7fdaa64d1..cf9123c7b 100644 --- a/rigs/dummy/tci1x.c +++ b/rigs/dummy/tci1x.c @@ -212,7 +212,7 @@ struct rig_caps tci1x_caps = .hamlib_check_rig_caps = HAMLIB_CHECK_RIG_CAPS }; -//Structure for mapping tci1x dynmamic modes to hamlib modes +//Structure for mapping tci1x dynamic modes to hamlib modes //tci1x displays modes as the rig displays them struct s_modeMap { diff --git a/rigs/elad/elad.c b/rigs/elad/elad.c index 9e257f81c..87e8f71b6 100644 --- a/rigs/elad/elad.c +++ b/rigs/elad/elad.c @@ -152,7 +152,7 @@ const struct confparams elad_cfg_params[] = * indicating that only a reply is needed (nothing will be sent). * data: Buffer for reply string. Can be NULL, indicating that no reply * is needed and will return with RIG_OK after command was sent. - * datasize: Size of buffer. It is the caller's responsibily to provide + * datasize: Size of buffer. It is the caller's responsibility to provide * a large enough buffer for all possible replies for a command. * * returns: diff --git a/rigs/icom/frame.c b/rigs/icom/frame.c index df2019e09..5fa28a110 100644 --- a/rigs/icom/frame.c +++ b/rigs/icom/frame.c @@ -291,7 +291,7 @@ again1: } // first 2 bytes of everything are 0xfe so we won't test those - // this allows some corruptin of the 0xfe bytes which has been seen in the wild + // this allows some corruption of the 0xfe bytes which has been seen in the wild if (memcmp(&buf[2], &sendbuf[2], frm_len - 2) != 0) { /* Frames are different? */ @@ -620,7 +620,7 @@ static int read_icom_frame_generic(hamlib_port_t *p, while ((read < rxbuffer_len) && (rxbuffer[read - 1] != FI) && (rxbuffer[read - 1] != COL)); - // Check that we have a valid frame preamble (which might be just a single preable character) + // Check that we have a valid frame preamble (which might be just a single preamble character) // Or an error code if (rxbuffer[0] != PR && rxbuffer[0] != COL) { diff --git a/rigs/icom/ic746.c b/rigs/icom/ic746.c index 6ace9675b..45e398205 100644 --- a/rigs/icom/ic746.c +++ b/rigs/icom/ic746.c @@ -357,7 +357,7 @@ struct rig_caps ic746_caps = #define S_MEM_2M_DUP_OFST 0x516 /* default 144 MHz duplex offset 3 byte little endian */ #define S_MEM_AUTO_RPTR 0x518 /* auto repeater set 0=OFF; 1=ON-1; 2=ON-2 */ #define S_MEM_LANG 0x523 /* 0=English 1=Japanese for voice announcer */ -#define S_MEM_TRCV 0x536 /* CI-V trancieve mode */ +#define S_MEM_TRCV 0x536 /* CI-V transceive mode */ #define S_MEM_CMP_LVL 0x538 /* speech compressor level 0-10 */ #define S_MEM_SBASS 0x539 /* SSB TX tone bass level */ #define S_MEM_RTTY_FL_PB 0x562 /* 0=250 Hz, 1=300' 2 = 350, 3 = 500, 4 = 1 KHz */ diff --git a/rigs/icom/ic756.c b/rigs/icom/ic756.c index 347fa7a41..45aca0a2e 100644 --- a/rigs/icom/ic756.c +++ b/rigs/icom/ic756.c @@ -525,7 +525,7 @@ static const struct confparams ic756pro2_ext_parms[] = #define S_MEM_BEEP 0x520 /* Button confirmation */ #define S_MEM_SQL_CTL 0x522 /* RF/SQL ctl set 0=auto; 1 = sql; 2 = RF+SQL */ #define S_MEM_QSPLT 0x524 /* enable quick split mode */ -#define S_MEM_TRCV 0x532 /* CI-V trancieve mode */ +#define S_MEM_TRCV 0x532 /* CI-V transceive mode */ #define S_MEM_LANG 0x536 /* 0=English 1=Japanese for voice announcer */ #define S_MEM_SCN_SPD 0x556 /* 0 = low; 1 = high */ #define S_MEM_RTTY_FL_PB 0x561 /* 0=250 Hz, 1=300' 2 = 350, 3 = 500, 4 = 1 KHz */ diff --git a/rigs/icom/ic820h.c b/rigs/icom/ic820h.c index 1d0bf11cf..9d4eb8d65 100644 --- a/rigs/icom/ic820h.c +++ b/rigs/icom/ic820h.c @@ -83,7 +83,7 @@ struct rig_caps ic820h_caps = .ctcss_list = NULL, .dcs_list = NULL, .preamp = { RIG_DBLST_END, }, - .attenuator = { RIG_DBLST_END, }, /* Attanuator 15dB for each band. manual button */ + .attenuator = { RIG_DBLST_END, }, /* Attenuator 15dB for each band. manual button */ .max_rit = Hz(0), /* SSB,CW: +-1.0kHz FM: +-5.0kHz */ .max_xit = Hz(0), .max_ifshift = Hz(0), /* 1.2kHz manual knob */ diff --git a/rigs/icom/ic821h.c b/rigs/icom/ic821h.c index 8e9dacb06..9c1e4b2ba 100644 --- a/rigs/icom/ic821h.c +++ b/rigs/icom/ic821h.c @@ -120,7 +120,7 @@ struct rig_caps ic821h_caps = .ctcss_list = NULL, .dcs_list = NULL, .preamp = { RIG_DBLST_END, }, - .attenuator = { RIG_DBLST_END, }, /* Attanuator 15dB for each band. manual button */ + .attenuator = { RIG_DBLST_END, }, /* Attenuator 15dB for each band. manual button */ .max_rit = Hz(0), /* SSB,CW: +-1.0kHz FM: +-5.0kHz */ .max_xit = Hz(0), .max_ifshift = Hz(0), /* 1.2kHz manual knob */ diff --git a/rigs/icom/icom.c b/rigs/icom/icom.c index 71cd24eba..77564a4b1 100644 --- a/rigs/icom/icom.c +++ b/rigs/icom/icom.c @@ -1760,7 +1760,7 @@ int icom_get_freq(RIG *rig, vfo_t vfo, freq_t *freq) if (vfo == RIG_VFO_MEM && (priv->civ_731_mode || RIG_IS_IC706)) { - // Memory channels have always 5-byte frequqncy + // Memory channels have always 5-byte frequency rig_debug(RIG_DEBUG_TRACE, "%s: VFO=MEM so turning off civ_731\n", __func__); civ_731_mode_save = 1; priv->civ_731_mode = 0; @@ -8119,7 +8119,7 @@ int icom_set_powerstat(RIG *rig, powerstat_t status) rig_debug(RIG_DEBUG_VERBOSE, "%s called status=%d\n", __func__, (int) status); - // elimininate retries to speed this up + // eliminate retries to speed this up // especially important when rig is not turned on retry_save = rp->retry; timeout_retry_save = rp->timeout_retry; diff --git a/rigs/jrc/jrc.c b/rigs/jrc/jrc.c index c7691272c..91b9378d7 100644 --- a/rigs/jrc/jrc.c +++ b/rigs/jrc/jrc.c @@ -1176,7 +1176,7 @@ int jrc_get_parm(RIG *rig, setting_t parm, value_t *val) val->i = ((10 * lvlbuf[1] + lvlbuf[2]) * 60 + /* hours */ 10 * lvlbuf[3] + lvlbuf[4]) * 60 + /* minutes */ - 10 * lvlbuf[5] + lvlbuf[6]; /* secondes */ + 10 * lvlbuf[5] + lvlbuf[6]; /* seconds */ break; case RIG_PARM_BEEP: diff --git a/rigs/kenwood/kenwood.c b/rigs/kenwood/kenwood.c index 83a93270c..c4449c5d6 100644 --- a/rigs/kenwood/kenwood.c +++ b/rigs/kenwood/kenwood.c @@ -258,7 +258,7 @@ int remove_nonprint(char *s) * indicating that only a reply is needed (nothing will be sent). * data: Buffer for reply string. Can be NULL, indicating that no reply * is needed and will return with RIG_OK after command was sent. - * datasize: Size of buffer. It is the caller's responsibily to provide + * datasize: Size of buffer. It is the caller's responsibility to provide * a large enough buffer for all possible replies for a command. * * returns: @@ -1423,7 +1423,7 @@ int kenwood_set_vfo(RIG *rig, vfo_t vfo) break; default: - rig_debug(RIG_DEBUG_ERR, "%s: unhandled VFO=%s, deafaulting to VFOA\n", + rig_debug(RIG_DEBUG_ERR, "%s: unhandled VFO=%s, defaulting to VFOA\n", __func__, rig_strvfo(priv->tx_vfo)); } diff --git a/rigs/kenwood/tmv7.c b/rigs/kenwood/tmv7.c index 8b20cc4e6..03309c181 100644 --- a/rigs/kenwood/tmv7.c +++ b/rigs/kenwood/tmv7.c @@ -183,7 +183,7 @@ struct rig_caps tmv7_caps = RIG_FLT_END }, - .str_cal = { 4, { {0, -60 }, {1, -30,}, {5, 0}, {7, 20}}}, /* rought guess */ + .str_cal = { 4, { {0, -60 }, {1, -30,}, {5, 0}, {7, 20}}}, /* rough guess */ .priv = (void *)& tmv7_priv_caps, .rig_init = kenwood_init, diff --git a/rigs/kenwood/ts870s.c b/rigs/kenwood/ts870s.c index 8a9184e63..98343310d 100644 --- a/rigs/kenwood/ts870s.c +++ b/rigs/kenwood/ts870s.c @@ -237,7 +237,7 @@ static int ts870s_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width) pbwidth_t mode_default_hpf; /* we assume the HPF is set to default and set the LPF to - give the best approximaation of the requested width */ + give the best approximation of the requested width */ if (RIG_MODE_AM == mode) { mode_default_hpf = 300; diff --git a/rigs/kit/drt1.c b/rigs/kit/drt1.c index 459127bab..87a191d7b 100644 --- a/rigs/kit/drt1.c +++ b/rigs/kit/drt1.c @@ -285,7 +285,7 @@ int drt1_get_conf(RIG *rig, hamlib_token_t token, char *val) DDS is AD9951. - The clock input is 45,012 MHz (also 2nd LO frequencie at the same time). + The clock input is 45,012 MHz (also 2nd LO frequency at the same time). The clock multiplier should be set to 8x at start value (possible, that this will change to lower clock multiplier). diff --git a/rigs/kit/elektor507.c b/rigs/kit/elektor507.c index f335c94b1..086741a94 100644 --- a/rigs/kit/elektor507.c +++ b/rigs/kit/elektor507.c @@ -549,7 +549,7 @@ int elektor507_ftdi_write_data(RIG *rig, void *FTOutBuf, * Original article: * http://www.elektor.com/magazines/2007/may/software-defined-radio.91527.lynkx * - * Author (Burkhard Kainka) page, in german: + * Author (Burkhard Kainka) page, in German: * http://www.b-kainka.de/sdrusb.html */ diff --git a/rigs/kit/pcrotor.c b/rigs/kit/pcrotor.c index c1345a034..a9ee11f5c 100644 --- a/rigs/kit/pcrotor.c +++ b/rigs/kit/pcrotor.c @@ -91,7 +91,7 @@ pcrotor_move(ROT *rot, int direction, int speed) /* * PcRotor rotator capabilities. * - * Control Interface schematics from, courtersy of Bob Hillard WA6UFQ: + * Control Interface schematics from, courtesy of Bob Hillard WA6UFQ: * http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=11173 * * DB25-7=Data-5= Power up/Sleep diff --git a/rigs/uniden/uniden.c b/rigs/uniden/uniden.c index d0328e673..7d4cdda71 100644 --- a/rigs/uniden/uniden.c +++ b/rigs/uniden/uniden.c @@ -99,7 +99,7 @@ tone_t uniden_dcs_list[] = * that the prefix is either the cmdstr prefix or OK. * data - Buffer for reply string. Can be NULL, indicating that no reply is * is needed and will return with RIG_OK after command was sent. - * datasize - in: Size of buffer. It is the caller's responsibily to provide + * datasize - in: Size of buffer. It is the caller's responsibility to provide * a large enough buffer for all possible replies for a command. * out: location where to store number of bytes read. * diff --git a/rigs/uniden/uniden_digital.c b/rigs/uniden/uniden_digital.c index 17d2e6d74..1f0d12dca 100644 --- a/rigs/uniden/uniden_digital.c +++ b/rigs/uniden/uniden_digital.c @@ -80,7 +80,7 @@ uniden_id_string_list[] = * that the prefix is either the cmdstr prefix or OK. * data - Buffer for reply string. Can be NULL, indicating that no reply is * is needed and will return with RIG_OK after command was sent. - * datasize - in: Size of buffer. It is the caller's responsibily to provide + * datasize - in: Size of buffer. It is the caller's responsibility to provide * a large enough buffer for all possible replies for a command. * out: location where to store number of bytes read. * @@ -295,7 +295,7 @@ const char *uniden_digital_get_info(RIG *rig) * * XXX indicates the BCD996T returns some non-printable ascii chars * within its comma separated fields. See pg 30-32 of BCD996T_Protocol.pdf. - * These chars cause abnomalies on stdout! */ + * These chars cause anomalies on stdout! */ /* FIXME: Strip or replace non-printable chars return from STS command! * (Below is a snip from DSctl utils.c file) diff --git a/rigs/wj/wj8888.c b/rigs/wj/wj8888.c index b5079ca80..8e321ffd7 100644 --- a/rigs/wj/wj8888.c +++ b/rigs/wj/wj8888.c @@ -25,7 +25,7 @@ #include "wj.h" -/* modes: what about ISB(Idependant Sideband)? */ +/* modes: what about ISB(Independent Sideband)? */ #define WJ8888_MODES (RIG_MODE_AM|RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM|RIG_MODE_AMS) #define WJ8888_FUNC (RIG_FUNC_NONE) diff --git a/rigs/yaesu/ft757gx.c b/rigs/yaesu/ft757gx.c index eebda9f6e..d7bdf5518 100644 --- a/rigs/yaesu/ft757gx.c +++ b/rigs/yaesu/ft757gx.c @@ -750,7 +750,7 @@ static int ft757_get_update_data(RIG *rig) rig_debug(RIG_DEBUG_VERBOSE, "%s called Timeout=%d ms, Retry=%d\n", __func__, rp->timeout, maxtries); - /* At least on one model, returns erraticaly a timeout. Increasing the timeout + /* At least on one model, returns erratically a timeout. Increasing the timeout does not fix things. So we restart the read from scratch, it works most of times. */ for (nbtries = 0 ; nbtries < maxtries ; nbtries++) { diff --git a/rigs/yaesu/ft817.c b/rigs/yaesu/ft817.c index c520eec61..125e2696b 100644 --- a/rigs/yaesu/ft817.c +++ b/rigs/yaesu/ft817.c @@ -2027,7 +2027,7 @@ static int ft817_set_rptr_shift(RIG *rig, vfo_t vfo, rptr_shift_t shift) /* Note: this doesn't have effect unless FT817 is in FM mode although the command is accepted in any mode. */ - rig_debug(RIG_DEBUG_VERBOSE, "ft817: set repeter shift = %i\n", shift); + rig_debug(RIG_DEBUG_VERBOSE, "ft817: set repeater shift = %i\n", shift); switch (shift) { @@ -2050,7 +2050,7 @@ static int ft817_set_rptr_offs(RIG *rig, vfo_t vfo, shortfreq_t offs) { unsigned char data[YAESU_CMD_LENGTH - 1]; - rig_debug(RIG_DEBUG_VERBOSE, "ft817: set repeter offs = %li\n", offs); + rig_debug(RIG_DEBUG_VERBOSE, "ft817: set repeater offs = %li\n", offs); /* fill in the offset freq */ to_bcd_be(data, offs / 10, 8); diff --git a/rigs/yaesu/ft857.c b/rigs/yaesu/ft857.c index 3f951ac2a..fa7530922 100644 --- a/rigs/yaesu/ft857.c +++ b/rigs/yaesu/ft857.c @@ -1350,7 +1350,7 @@ int ft857_set_rptr_shift(RIG *rig, vfo_t vfo, rptr_shift_t shift) { rig_debug(RIG_DEBUG_VERBOSE, "%s: called \n", __func__); - rig_debug(RIG_DEBUG_VERBOSE, "ft857: set repeter shift = %i\n", shift); + rig_debug(RIG_DEBUG_VERBOSE, "ft857: set repeater shift = %i\n", shift); switch (shift) { @@ -1373,7 +1373,7 @@ int ft857_set_rptr_offs(RIG *rig, vfo_t vfo, shortfreq_t offs) rig_debug(RIG_DEBUG_VERBOSE, "%s: called \n", __func__); - rig_debug(RIG_DEBUG_VERBOSE, "ft857: set repeter offs = %li\n", offs); + rig_debug(RIG_DEBUG_VERBOSE, "ft857: set repeater offs = %li\n", offs); /* fill in the offset freq */ to_bcd_be(data, offs / 10, 8); diff --git a/rigs/yaesu/ft891.c b/rigs/yaesu/ft891.c index 2b6c5c4d5..fb00a9bf2 100644 --- a/rigs/yaesu/ft891.c +++ b/rigs/yaesu/ft891.c @@ -531,7 +531,7 @@ static int ft891_get_split_mode(RIG *rig, vfo_t vfo, rmode_t *tx_mode, * Returns RIG_OK on success or an error code on failure * * Comments: Passsband is not set here. - * FT891 apparentlhy cannot set VFOB mode directly + * FT891 apparently cannot set VFOB mode directly * So we'll just set A and swap A into B * */ diff --git a/rigs/yaesu/ft897.c b/rigs/yaesu/ft897.c index ebe95ad9d..9068f6b97 100644 --- a/rigs/yaesu/ft897.c +++ b/rigs/yaesu/ft897.c @@ -1472,7 +1472,7 @@ int ft897_set_rptr_shift(RIG *rig, vfo_t vfo, rptr_shift_t shift) { rig_debug(RIG_DEBUG_VERBOSE, "%s: called\n", __func__); - rig_debug(RIG_DEBUG_VERBOSE, "ft897: set repeter shift = %i\n", shift); + rig_debug(RIG_DEBUG_VERBOSE, "ft897: set repeater shift = %i\n", shift); switch (shift) { @@ -1495,7 +1495,7 @@ int ft897_set_rptr_offs(RIG *rig, vfo_t vfo, shortfreq_t offs) rig_debug(RIG_DEBUG_VERBOSE, "%s: called\n", __func__); - rig_debug(RIG_DEBUG_VERBOSE, "ft897: set repeter offs = %li\n", offs); + rig_debug(RIG_DEBUG_VERBOSE, "ft897: set repeater offs = %li\n", offs); /* fill in the offset freq */ to_bcd_be(data, offs / 10, 8); diff --git a/rigs/yaesu/pmr171.c b/rigs/yaesu/pmr171.c index bdff4fd1f..2abe30e6e 100644 --- a/rigs/yaesu/pmr171.c +++ b/rigs/yaesu/pmr171.c @@ -1140,7 +1140,7 @@ static int pmr171_set_rptr_shift(RIG *rig, vfo_t vfo, rptr_shift_t shift) /* Note: this doesn't have effect unless FT817 is in FM mode although the command is accepted in any mode. */ - rig_debug(RIG_DEBUG_VERBOSE, "pmr171: set repeter shift = %i\n", shift); + rig_debug(RIG_DEBUG_VERBOSE, "pmr171: set repeater shift = %i\n", shift); switch (shift) { @@ -1163,7 +1163,7 @@ static int pmr171_set_rptr_offs(RIG *rig, vfo_t vfo, shortfreq_t offs) { unsigned char data[YAESU_CMD_LENGTH - 1]; - rig_debug(RIG_DEBUG_VERBOSE, "pmr171: set repeter offs = %li\n", offs); + rig_debug(RIG_DEBUG_VERBOSE, "pmr171: set repeater offs = %li\n", offs); /* fill in the offset freq */ to_bcd_be(data, offs / 10, 8); diff --git a/rigs/yaesu/vr5000.c b/rigs/yaesu/vr5000.c index aff1f6d53..fdbe1cbb2 100644 --- a/rigs/yaesu/vr5000.c +++ b/rigs/yaesu/vr5000.c @@ -32,7 +32,7 @@ * * The read s-meter CAT command seems only to return 17 to 23 depending * on the strength of the signal. Setting the RF attenuator on with no - * attenna on does not decrease the level below 17. If you wish to read + * antenna on does not decrease the level below 17. If you wish to read * the s-meter on a specific frequency, set the frequency and wait a * 500-1000 mS before reading it. diff --git a/rigs/yaesu/vx1700.c b/rigs/yaesu/vx1700.c index 129a64255..0faf4be11 100644 --- a/rigs/yaesu/vx1700.c +++ b/rigs/yaesu/vx1700.c @@ -943,7 +943,7 @@ static int vx1700_set_ptt_gps_jack(ptt_t ptt) * FIXME * * We are using GPIO to manage PTT pin in GPS/Data jack. - * This highly binded to our specific device, so it makes + * This highly bound to our specific device, so it makes * no sense to put our code here. * On regular PC this should be managed in another way, * probably via DTR/RTS. diff --git a/rotators/celestron/celestron.c b/rotators/celestron/celestron.c index 40d0eb923..dfc2d25f0 100644 --- a/rotators/celestron/celestron.c +++ b/rotators/celestron/celestron.c @@ -38,7 +38,7 @@ * cmdstr - Command to be sent to the rig. * data - Buffer for reply string. Can be NULL, indicating that no reply is * is needed, but answer will still be read. - * data_len - in: Size of buffer. It is the caller's responsibily to provide + * data_len - in: Size of buffer. It is the caller's responsibility to provide * a large enough buffer for all possible replies for a command. * * returns: diff --git a/rotators/gs232a/gs232.c b/rotators/gs232a/gs232.c index 96cd0c732..03b8e3ef1 100644 --- a/rotators/gs232a/gs232.c +++ b/rotators/gs232a/gs232.c @@ -38,7 +38,7 @@ * cmdstr - Command to be sent to the rig. * data - Buffer for reply string. Can be NULL, indicating that no reply is * is needed, but answer will still be read. - * data_len - in: Size of buffer. It is the caller's responsibily to provide + * data_len - in: Size of buffer. It is the caller's responsibility to provide * a large enough buffer for all possible replies for a command. * * returns: diff --git a/rotators/gs232a/gs232a.c b/rotators/gs232a/gs232a.c index c6d00f9ed..39a93746f 100644 --- a/rotators/gs232a/gs232a.c +++ b/rotators/gs232a/gs232a.c @@ -50,7 +50,7 @@ * cmdstr - Command to be sent to the rig. * data - Buffer for reply string. Can be NULL, indicating that no reply is * is needed, but answer will still be read. - * data_len - in: Size of buffer. It is the caller's responsibily to provide + * data_len - in: Size of buffer. It is the caller's responsibility to provide * a large enough buffer for all possible replies for a command. * * returns: diff --git a/rotators/gs232a/gs232b.c b/rotators/gs232a/gs232b.c index 461a8491b..4b1d558bc 100644 --- a/rotators/gs232a/gs232b.c +++ b/rotators/gs232a/gs232b.c @@ -46,7 +46,7 @@ * cmdstr - Command to be sent to the rig. * data - Buffer for reply string. Can be NULL, indicating that no reply is * is needed, but answer will still be read. - * data_len - in: Size of buffer. It is the caller's responsibily to provide + * data_len - in: Size of buffer. It is the caller's responsibility to provide * a large enough buffer for all possible replies for a command. * * returns: diff --git a/rotators/ioptron/rot_ioptron.c b/rotators/ioptron/rot_ioptron.c index c921dbca0..c4899952d 100644 --- a/rotators/ioptron/rot_ioptron.c +++ b/rotators/ioptron/rot_ioptron.c @@ -39,7 +39,7 @@ * * cmdstr - Command to be sent to the rig. * data - Buffer for reply string. - * resp_len - in: Expected length of response. It is the caller's responsibily to + * resp_len - in: Expected length of response. It is the caller's responsibility to * provide a buffer at least 1 byte larger than this for null terminator. * * COMMANDS note: as of 12/2018 a mixture of V2 and V3 @@ -231,7 +231,7 @@ ioptron_stop(ROT *rot) } /** sets mount position, requires 4 steps - * set azmiuth + * set azimuth * set altitude * goto set * stop tracking - mount starts tracking after goto @@ -294,7 +294,7 @@ ioptron_set_position(ROT *rot, azimuth_t az, elevation_t el) } } - /* set azmiuth, returns '1" if OK */ + /* set azimuth, returns '1" if OK */ SNPRINTF(cmdstr, sizeof(cmdstr), ":Sz%09.0f#", faz); retval = ioptron_transaction(rot, cmdstr, retbuf, 1); diff --git a/rotators/m2/rc2800.c b/rotators/m2/rc2800.c index edfb6980b..36883de24 100644 --- a/rotators/m2/rc2800.c +++ b/rotators/m2/rc2800.c @@ -151,7 +151,7 @@ int testmain() * cmdstr - Command to be sent to the rig. * data - Buffer for reply string. Can be NULL, indicating that no reply is * is needed, but answer will still be read. - * data_len - in: Size of buffer. It is the caller's responsibily to provide + * data_len - in: Size of buffer. It is the caller's responsibility to provide * a large enough buffer for all possible replies for a command. * * returns: diff --git a/rotators/meade/meade.c b/rotators/meade/meade.c index 2827ad72e..e36a075fd 100644 --- a/rotators/meade/meade.c +++ b/rotators/meade/meade.c @@ -85,7 +85,7 @@ struct meade_priv_data * cmdstr - Command to be sent to the rig. * data - Buffer for reply string. Can be NULL, indicating that no reply is * is needed, but answer will still be read. - * data_len - in: Size of buffer. It is the caller's responsibily to provide + * data_len - in: Size of buffer. It is the caller's responsibility to provide * a large enough buffer for all possible replies for a command. * * returns: diff --git a/rotators/prosistel/prosistel.c b/rotators/prosistel/prosistel.c index 7bf7871a2..464151bf5 100644 --- a/rotators/prosistel/prosistel.c +++ b/rotators/prosistel/prosistel.c @@ -50,7 +50,7 @@ struct prosistel_rot_priv_caps * cmdstr - Command to be sent to the rig. * data - Buffer for reply string. Can be NULL, indicating that no reply is * is needed, but answer will still be read. - * data_len - in: Size of buffer. It is the caller's responsibily to provide + * data_len - in: Size of buffer. It is the caller's responsibility to provide * a large enough buffer for all possible replies for a command. * * returns: diff --git a/rotators/spid/spid.c b/rotators/spid/spid.c index 4baa0e5e7..fd4fab6d1 100644 --- a/rotators/spid/spid.c +++ b/rotators/spid/spid.c @@ -631,7 +631,7 @@ const struct confparams spid_cfg_params[] = "0", RIG_CONF_NUMERIC, { .n = { 0, 0xff, 1 } } }, { - TOK_ELRES, "el_resolution", "Eleveation resolution", "Number of pulses per degree, 0 = auto sense", + TOK_ELRES, "el_resolution", "Elevation resolution", "Number of pulses per degree, 0 = auto sense", "0", RIG_CONF_NUMERIC, { .n = { 0, 0xff, 1 } } }, { RIG_CONF_END, NULL, } diff --git a/simulators/simts890.c b/simulators/simts890.c index 597d19054..854a1e96e 100644 --- a/simulators/simts890.c +++ b/simulators/simts890.c @@ -1419,7 +1419,7 @@ int main(int argc, char *argv[]) switch (buf[2]) { case '0': // Frequency Marker Function - case '1': // Frequency Marker List Regiatration + case '1': // Frequency Marker List Registration case '2': // Total Number Registered of Frequency Marker List case '3': // Frequency Marker List Readout case '4': // Frequency Marker List Delete diff --git a/tests/dumpmem.c b/tests/dumpmem.c index c021c5030..c3e5f41b6 100644 --- a/tests/dumpmem.c +++ b/tests/dumpmem.c @@ -1,6 +1,6 @@ /* * dumpmem.c - Copyright (C) 2001 Stephane Fillod - * This programs dumps the mmeory contents of a rig. + * This programs dumps the memory contents of a rig. * * * This program is free software; you can redistribute it and/or modify diff --git a/tests/rigctl_parse.c b/tests/rigctl_parse.c index bcb10af96..b17060fc3 100644 --- a/tests/rigctl_parse.c +++ b/tests/rigctl_parse.c @@ -5141,7 +5141,7 @@ declare_proto_rig(send_cmd) RETURNFUNC2(RIG_OK); } - // need to move the eom_buf to rig-specifc backends + // need to move the eom_buf to rig-specific backends // we'll let KENWOOD backends use the ; char in the rigctl commands if (backend_num == RIG_KENWOOD || backend_num == RIG_YAESU) { diff --git a/tests/test2038.c b/tests/test2038.c index 8d7fe70a4..cb439548c 100644 --- a/tests/test2038.c +++ b/tests/test2038.c @@ -1,6 +1,6 @@ /* 2038 test This is OK on 64-bit systems and mingw64 -Does fail when compiled with gcc -m32 -o 2038 2038.c +Does fail when compiled with gcc -m32 -o test2038 test2038.c */ #include #include