-
Notifications
You must be signed in to change notification settings - Fork 2
Request: Add Send Method #2
Description
I've written a small Windows application using the WsjtxUpdLib to monitor received messages from WSJTX, show outstanding CQs with those from not-previously-worked callers highlighted, and do the logging to QRZ, TQSL, and LoTW on QSO completion (essentially the Gridtracker feature subset I really use, using less screen real estate and memory). The one feature that isn't supported by the current WsjtxUpdLib codebase is the reply on selecting a caller from the list (via a WsJtx Reply datagram); all that is needed in WsjtxUpdLib is a Send() method in the WsjtxClient class, as follows:
public void Send(byte[] datagram, IPEndPoint from)
{
udpClient.Send(datagram, datagram.Length, from);
}
Would it be possible to add this method?
Thanx & 73
Barry W7BIK