From 8d62ee5cde160109841426082da4741d4712f7d6 Mon Sep 17 00:00:00 2001
From: Kevin Peterson <kmpeters@anl.gov>
Date: Fri, 24 Feb 2023 15:55:36 -0600
Subject: [PATCH] Fixed the communication problem

---
 iocBoot/iocxxx/iocsh/vmc.cmd | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/iocBoot/iocxxx/iocsh/vmc.cmd b/iocBoot/iocxxx/iocsh/vmc.cmd
index 3754207..b39d863 100644
--- a/iocBoot/iocxxx/iocsh/vmc.cmd
+++ b/iocBoot/iocxxx/iocsh/vmc.cmd
@@ -12,7 +12,10 @@ asynSetTraceMask("VMC_ETH", 0, 1)
 asynSetTraceIOMask("VMC_ETH", 0, 1)
 
 # Set end-of-string terminators
-asynOctetSetInputEos("VMC_ETH",0,"\r\n")
+# Original Firmware EOS
+#!asynOctetSetInputEos("VMC_ETH",0,"\r\n")
+# New Firmware EOS
+asynOctetSetInputEos("VMC_ETH",0,"\r")
 asynOctetSetOutputEos("VMC_ETH",0,"\r")
 
 # These motor records can get their prefix from the environment variable
-- 
GitLab