From 4989f88f98a9144e802559784bcda12ed4287def Mon Sep 17 00:00:00 2001 From: Tom Early Date: Thu, 29 Apr 2021 08:48:03 -0700 Subject: [PATCH] minor changes to dvap --- DVAPDongle.cpp | 2 +- QnetDVAP.cpp | 2 +- QnetModem.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DVAPDongle.cpp b/DVAPDongle.cpp index e9af580..1edcce4 100644 --- a/DVAPDongle.cpp +++ b/DVAPDongle.cpp @@ -78,7 +78,7 @@ bool CDVAPDongle::Initialize(const char *devpath, const char *serialno, const in for (int i = 0; i < 32; i++) { sprintf(device, "/dev/ttyUSB%d", i); - + printf("Trying device %s...\n", device); if (open_device(device)) { if (get_ser(device, serialno)) diff --git a/QnetDVAP.cpp b/QnetDVAP.cpp index 56fb925..186ad0b 100644 --- a/QnetDVAP.cpp +++ b/QnetDVAP.cpp @@ -49,7 +49,7 @@ #include "DStarDecode.h" #include "QnetDVAP.h" -#define DVAP_VERSION "QnetDVAP-526" +#define DVAP_VERSION "QnetDVAP-220429" #define CALL_SIZE 8 #define IP_SIZE 15 diff --git a/QnetModem.cpp b/QnetModem.cpp index 6d590f1..cab54b0 100644 --- a/QnetModem.cpp +++ b/QnetModem.cpp @@ -611,7 +611,7 @@ int CQnetModem::SendToModem(const unsigned char *buf) { if (EAGAIN != errno) { - printf("Error %d writing to dvap, message=%s\n", errno, strerror(errno)); + printf("Error %d writing to modem, message=%s\n", errno, strerror(errno)); return -1; } }