From 1affac778b2b902cc218ec664b9716a1410dfb4d Mon Sep 17 00:00:00 2001 From: Michael Black W9MDB Date: Sat, 16 Jan 2021 12:14:30 -0600 Subject: [PATCH] Change ft1200 stop bits to 2. Found by Bill Sommerville with remote serial port testing. Were getting many ?; responses with stopbits=1 --- rigs/yaesu/ft1200.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rigs/yaesu/ft1200.c b/rigs/yaesu/ft1200.c index 1a2da5d59..28b5eb92f 100644 --- a/rigs/yaesu/ft1200.c +++ b/rigs/yaesu/ft1200.c @@ -89,7 +89,7 @@ const struct rig_caps ftdx1200_caps = RIG_MODEL(RIG_MODEL_FTDX1200), .model_name = "FTDX-1200", .mfg_name = "Yaesu", - .version = NEWCAT_VER ".0", + .version = NEWCAT_VER ".1", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -99,7 +99,7 @@ const struct rig_caps ftdx1200_caps = .serial_rate_min = 4800, /* Default rate per manual */ .serial_rate_max = 38400, .serial_data_bits = 8, - .serial_stop_bits = 1, /* Assumed since manual makes no mention */ + .serial_stop_bits = 2, /* found by testing with remote serial port */ .serial_parity = RIG_PARITY_NONE, .serial_handshake = RIG_HANDSHAKE_HARDWARE, .write_delay = FTDX1200_WRITE_DELAY,