From 9eddf62687bd894a09ff02fef53500f5977794a0 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Thu, 8 Dec 2022 22:37:10 -0600 Subject: [PATCH] Update simftdx3000.c --- simulators/simftdx3000.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/simulators/simftdx3000.c b/simulators/simftdx3000.c index e8c4a31fe..33b0cd000 100644 --- a/simulators/simftdx3000.c +++ b/simulators/simftdx3000.c @@ -252,6 +252,11 @@ int main(int argc, char *argv[]) { sscanf(buf, "MD0%d", &md); } + else if (strcmp(buf, "PS;") == 0) + { + SNPRINTF(buf, sizeof(buf), "PS1;"); + n = write(fd, buf, strlen(buf)); + } else if (strcmp(buf, "VS;") == 0) { SNPRINTF(buf, sizeof(buf), "VS%d;", vs);