From 3a91446287b1ab3fe3630be108141e306d5caf2e Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sun, 11 Dec 2022 14:50:13 -0600 Subject: [PATCH] Update simftdx1200.c --- simulators/simftdx1200.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/simulators/simftdx1200.c b/simulators/simftdx1200.c index 6438f6346..2808405a3 100644 --- a/simulators/simftdx1200.c +++ b/simulators/simftdx1200.c @@ -293,6 +293,11 @@ int main(int argc, char *argv[]) { sscanf(buf, "EX039%d", &ex039); } + else if (strcmp(buf,"PS;") == 0) + { + SNPRINTF(buf, sizeof(buf), "PS1;"); + n = write(fd, buf, strlen(buf)); + } else if (strlen(buf) > 0) { fprintf(stderr, "Unknown command: %s\n", buf);