From b041a7f6075cc3c6594800ad78794ab7ed5f8754 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Tue, 20 Dec 2022 08:29:12 -0600 Subject: [PATCH] Change TX-500 to only have 9600 baud available https://github.com/Hamlib/Hamlib/issues/1188 --- rigs/kenwood/tx500.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rigs/kenwood/tx500.c b/rigs/kenwood/tx500.c index d5cb63983..5f2c4f5ca 100644 --- a/rigs/kenwood/tx500.c +++ b/rigs/kenwood/tx500.c @@ -127,15 +127,15 @@ const struct rig_caps tx500_caps = RIG_MODEL(RIG_MODEL_LAB599_TX500), .model_name = "TX-500", .mfg_name = "Lab599", - .version = BACKEND_VER ".1", + .version = BACKEND_VER ".3", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, .ptt_type = RIG_PTT_RIG, .dcd_type = RIG_DCD_RIG, .port_type = RIG_PORT_SERIAL, - .serial_rate_min = 1200, - .serial_rate_max = 57600, + .serial_rate_min = 9600, + .serial_rate_max = 9600, .serial_data_bits = 8, .serial_stop_bits = 1, .serial_parity = RIG_PARITY_NONE,