Skip to content

Commit

Permalink
Update timeout values based on testing with Malchite SDR
Browse files Browse the repository at this point in the history
  • Loading branch information
mdblack98 committed Apr 6, 2021
1 parent aa1972f commit c02b079
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion rigs/dummy/netrigctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -2296,7 +2296,7 @@ struct rig_caps netrigctl_caps =
.ptt_type = RIG_PTT_RIG_MICDATA,
.dcd_type = RIG_DCD_RIG,
.port_type = RIG_PORT_NETWORK,
.timeout = 1000, /* enough for the worst rig we have */
.timeout = 3000, /* enough for the worst rig we have */
.retry = 5, /* 5 seconds total */

/* following fields updated in rig_state at opening time */
Expand Down
9 changes: 5 additions & 4 deletions rigs/kenwood/ts480.c
Original file line number Diff line number Diff line change
Expand Up @@ -961,14 +961,14 @@ const struct rig_caps malachite_caps =
.ptt_type = RIG_PTT_NONE,
.port_type = RIG_PORT_SERIAL,
.serial_rate_min = 4800,
.serial_rate_max = 115200,
.serial_rate_max = 38400,
.serial_data_bits = 8,
.serial_stop_bits = 1,
.serial_parity = RIG_PARITY_NONE,
.serial_handshake = RIG_HANDSHAKE_NONE,
.write_delay = 0,
.post_write_delay = 0,
.timeout = 200,
.post_write_delay = 400,
.timeout = 3000,
.retry = 3,
.preamp = {0, RIG_DBLST_END,},
.attenuator = {0, RIG_DBLST_END,},
Expand All @@ -978,7 +978,8 @@ const struct rig_caps malachite_caps =


.rx_range_list1 = {
{kHz(100), GHz(1), TS480_ALL_MODES, -1, -1, RIG_VFO_A, RIG_ANT_CURR, "Generic" },
{kHz(50), MHz(250), TS480_ALL_MODES, -1, -1, RIG_VFO_A, RIG_ANT_CURR, "Generic" },
{MHz(400), GHz(2), TS480_ALL_MODES, -1, -1, RIG_VFO_A, RIG_ANT_CURR, "Generic" },
RIG_FRNG_END,
},
.priv = (void *)& ts480_priv_caps,
Expand Down

0 comments on commit c02b079

Please sign in to comment.