From 49b01e196874961d64a60136cfe44c29c5c7ebd8 Mon Sep 17 00:00:00 2001 From: "Mark J. Fine" Date: Fri, 4 Jul 2025 20:54:45 -0400 Subject: [PATCH] Removed EOM from set_mem's "Cxx" command because it was leaving an extra LF in the receive queue, messing up the response to any subsequent command. --- rigs/drake/drake.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rigs/drake/drake.c b/rigs/drake/drake.c index 193f6b52f..32999d6cc 100644 --- a/rigs/drake/drake.c +++ b/rigs/drake/drake.c @@ -1032,11 +1032,11 @@ int drake_set_mem(RIG *rig, vfo_t vfo, int ch) if (rig->caps->rig_model == RIG_MODEL_DKR8) { - SNPRINTF(buf, sizeof(buf), "C%02d" EOM, ch); + SNPRINTF(buf, sizeof(buf), "C%02d", ch); } else { - SNPRINTF(buf, sizeof(buf), "C%03d" EOM, ch); + SNPRINTF(buf, sizeof(buf), "C%03d", ch); } ack_len = 0; // fix compile-time warning "possibly uninitialized"