Skip to content

Commit 9aed263

Browse files
authored
Merge pull request Hamlib#1708 from GeoBaltz/fix27
Minor fixes/cleanups for 4.6.3
2 parents 8f641b2 + 4f3f308 commit 9aed263

File tree

10 files changed

+13
-9
lines changed

10 files changed

+13
-9
lines changed

NEWS

+3
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@ Version 4.6.3
1717
* Add rig CODAN 2110
1818

1919
Version 4.6.2
20+
* 2025-02-09
2021
* Add missing levels for IC746/PRO RIG_LEVEL_RFPOWER_METER,RIG_LEVEL_RFPOWER_METER_WATTS,RIG_LEVEL_SWR,RIG_LEVEL_ALC
2122
* Fix IC905 for gpredict
2223
* Fix potential segfault on QMX
2324
* Fix pmr171
2425

2526
Version 4.6.1
27+
* 2025-01-21
2628
* Fix C++ builds failing on rig_list_foreach function
2729
* Fix IC9100 rigctld startup to end up on VFOA
2830
* Fix grig build by removing sys/socket.h -- apparently not needed
@@ -34,6 +36,7 @@ Version 4.6.1
3436
* Fix SDRConsole by removing lots of things it does not have
3537

3638
Version 4.6
39+
* 2024-12-24
3740
* send_raw can now take hex digits as colon-separated -- e.g. send_raw icom xfe:xfe:x94:xe0:03:xfd
3841
* Add IC7760
3942
* IC7300 Mode filter can now be set by # (i.e. 1,2,3)

rigs/kenwood/ts890s.c

+1
Original file line numberDiff line numberDiff line change
@@ -669,6 +669,7 @@ struct rig_caps ts890s_caps =
669669
.get_mode = kenwood_get_mode,
670670
.set_vfo = kenwood_set_vfo,
671671
.get_vfo = kenwood_get_vfo_if,
672+
.vfo_op = kenwood_vfo_op,
672673
.set_split_vfo = kenwood_set_split_vfo,
673674
.get_split_vfo = ts890s_get_split_vfo,
674675
.set_ctcss_tone = kenwood_set_ctcss_tone_tn,

tests/ampctl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ int main(int argc, char *argv[])
315315
continue;
316316
}
317317

318-
retcode = amp_set_conf(my_amp, amp_token_lookup(my_amp, mytoken), myvalue);
318+
retcode = amp_set_conf(my_amp, lookup, myvalue);
319319

320320
if (retcode != RIG_OK)
321321
{

tests/ampctld.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ int main(int argc, char *argv[])
340340
continue;
341341
}
342342

343-
retcode = amp_set_conf(my_amp, amp_token_lookup(my_amp, mytoken), myvalue);
343+
retcode = amp_set_conf(my_amp, lookup, myvalue);
344344

345345
if (retcode != RIG_OK)
346346
{

tests/rigctl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ int main(int argc, char *argv[])
585585
continue;
586586
}
587587

588-
retcode = rig_set_conf(my_rig, rig_token_lookup(my_rig, mytoken), myvalue);
588+
retcode = rig_set_conf(my_rig, lookup, myvalue);
589589

590590
if (retcode != RIG_OK)
591591
{

tests/rigctld.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ int main(int argc, char *argv[])
681681
continue;
682682
}
683683

684-
retcode = rig_set_conf(my_rig, rig_token_lookup(my_rig, mytoken), myvalue);
684+
retcode = rig_set_conf(my_rig, lookup, myvalue);
685685

686686
if (retcode != RIG_OK)
687687
{

tests/rigmem.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ extern int csv_parm_load(RIG *rig, const char *infilename);
5555
*/
5656
void usage();
5757
void version();
58-
int set_conf(RIG *rig, char *conf_parms);
58+
static int set_conf(RIG *rig, char *conf_parms);
5959

6060
int clear_chans(RIG *rig, const char *infilename);
6161

@@ -442,7 +442,7 @@ void usage()
442442
}
443443

444444

445-
int set_conf(RIG *rig, char *conf_parms)
445+
static int set_conf(RIG *rig, char *conf_parms)
446446
{
447447
char *p, *n;
448448

tests/rigswr.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ void usage()
374374
}
375375

376376

377-
int set_conf(RIG *rig, char *conf_parms)
377+
static int set_conf(RIG *rig, char *conf_parms)
378378
{
379379
char *p, *n;
380380

tests/rotctl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ int main(int argc, char *argv[])
355355
continue;
356356
}
357357

358-
retcode = rot_set_conf(my_rot, rot_token_lookup(my_rot, mytoken), myvalue);
358+
retcode = rot_set_conf(my_rot, lookup, myvalue);
359359

360360
if (retcode != RIG_OK)
361361
{

tests/rotctld.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ int main(int argc, char *argv[])
363363
continue;
364364
}
365365

366-
retcode = rot_set_conf(my_rot, rot_token_lookup(my_rot, mytoken), myvalue);
366+
retcode = rot_set_conf(my_rot, lookup, myvalue);
367367

368368
if (retcode != RIG_OK)
369369
{

0 commit comments

Comments
 (0)