Re: [wsjt-devel] UDP Server

2017-08-28 Thread Heimir Sverrisson
ive them? > > > > 73, Steve K5FR > > > > *From:* Heimir Sverrisson [mailto:heimir.sverris...@gmail.com] > *Sent:* Monday, August 28, 2017 4:20 PM > *To:* WSJT software development > *Subject:* Re: [wsjt-devel] UDP Server > > > > Hi Steve, > > I do no

Re: [wsjt-devel] UDP Server

2017-08-28 Thread Steve Nance
PM To: WSJT software development Subject: Re: [wsjt-devel] UDP Server Hi Steve, I do not have C# code, but I'm working on Java implementation that should be close enough for you to look at. It's available on Github at: https://github.com/heimir-sverrisson/MapQSOs Please note th

Re: [wsjt-devel] UDP Server

2017-08-28 Thread Heimir Sverrisson
Hi Steve, I do not have C# code, but I'm working on Java implementation that should be close enough for you to look at. It's available on Github at: https://github.com/heimir-sverrisson/MapQSOs Please note that this is very much work in progress, but the code that receives the UDP datagrams and par

Re: [wsjt-devel] UDP Server

2016-03-24 Thread Michael Black
Use TeamViewer. Works quite well. I've been using it to help install and my attic antennas too. Webcam on the SWR meter in the shack and TeamViewer to turn on transmit and change bands. You can use JTAlert also to set up texting to your phone so you can relax a bit and have your phone buzz you

Re: [wsjt-devel] UDP Server

2016-03-24 Thread Bill Somerville
On 24/03/2016 15:02, i...@fg8oj.com wrote: > I am trying to imagine a remote solution to use WSJT from my couch (or > hammock to be exact^^) on local network with a simple smartphone and > understand that I have to use UDP Server witch is not my best > developpment specialization (web/mobile app de

Re: [wsjt-devel] UDP Server

2015-04-20 Thread Bill Somerville
On 20/04/2015 16:11, SM0THU wrote: > Hi Bill, Hi Anders, > > Using the replay message works fine for me. I did find a bug at first, > though. I still had the schema number set to 3 in my application. That caused > WSJT-X to hang when receiving a message. > > I get this in a trace file: > Mon Apr

Re: [wsjt-devel] UDP Server

2015-04-20 Thread SM0THU
Hi Bill, Using the replay message works fine for me. I did find a bug at first, though. I still had the schema number set to 3 in my application. That caused WSJT-X to hang when receiving a message. I get this in a trace file: Mon Apr 20 14:58:50 2015 GMT(:0)Debug: "WSJT-X v1.5.0-devel r5245

Re: [wsjt-devel] UDP Server

2015-04-19 Thread Bill Somerville
On 18/04/2015 20:53, SM0THU wrote: > Thanks Bill, for clearing up my confusion. Hi Anders, > > The protocol is working really good. I have tried it simultaneously with > multiple WSJT-X instances on multiple machines and OSes. My application gets > all decodes from the different WSJT-X instances.

Re: [wsjt-devel] UDP Server

2015-04-18 Thread SM0THU
Thanks Bill, for clearing up my confusion. The protocol is working really good. I have tried it simultaneously with multiple WSJT-X instances on multiple machines and OSes. My application gets all decodes from the different WSJT-X instances. When replying to a CQ, it ends up in the correct inst

Re: [wsjt-devel] UDP Server

2015-04-16 Thread Bill Somerville
On 16/04/2015 21:59, SM0THU wrote: > Hi Bill, Hi Anders, > > I have now implemented reading what is sent from WSJT-X. I noted a couple of > things. > > The schema says that Delta time (S) is a float (32 bits according to > http://doc.qt.io/qt-5/datastreamformat.html), but it’s sent in 64 bits. OK

Re: [wsjt-devel] UDP Server

2015-04-16 Thread SM0THU
Hi Bill, I have now implemented reading what is sent from WSJT-X. I noted a couple of things. The schema says that Delta time (S) is a float (32 bits according to http://doc.qt.io/qt-5/datastreamformat.html), but it’s sent in 64 bits. Byte array from a decode: Split into schema items: adbcc

Re: [wsjt-devel] UDP Server

2015-04-15 Thread Bill Somerville
Hi All, On 14/04/2015 19:46, Bill Somerville wrote: > On 14/04/2015 18:35, SM0THU wrote: >> Hi Bill, >> >> >> That sounds great. >> I’ll have to look into QDataStream and see how I can do that with Swift. > Here is the key information: http://doc.qt.io/qt-5/datastreamformat.html > > That page lis

Re: [wsjt-devel] UDP Server

2015-04-14 Thread Bill Somerville
On 14/04/2015 18:35, SM0THU wrote: > Hi Bill, Hi Anders, > > That sounds great. > > One of the reasons for creating my application was to learn Apples new Swift > language and Xcode, so that is what I’m using. OK, I quite like Objective C and Swift is interesting but beware disappearing down the

Re: [wsjt-devel] UDP Server

2015-04-14 Thread SM0THU
Hi Bill, That sounds great. One of the reasons for creating my application was to learn Apples new Swift language and Xcode, so that is what I’m using. I’ll have to look into QDataStream and see how I can do that with Swift. 73 /Anders > On 14 Apr 2015, at 19:23, Bill Somerville wrote: >

Re: [wsjt-devel] UDP Server

2015-04-14 Thread Bill Somerville
On 14/04/2015 17:57, Anders Östlund wrote: > Hi, Hi Anders, > > I'm writing a program that is kind of a JT-Alert alternative, but for Mac OS > X. > Being able to trigger a reply to a CQ from externally would be a great > feature. > > I've got Mike's patch to work on r5068. Before trying to get it

Re: [wsjt-devel] UDP Server

2015-04-14 Thread Anders Östlund
> Hi, I'm writing a program that is kind of a JT-Alert alternative, but for Mac OS X. Being able to trigger a reply to a CQ from externally would be a great feature. I've got Mike's patch to work on r5068. Before trying to get it to work on a more recent commit, I just want to ask if there has

Re: [wsjt-devel] UDP Server

2015-03-17 Thread Bill Somerville
Hi Mike, some more comments: I think it would be sensible to include the instance name in the broadcast datagram as a third field. You can use the method QApplication::applicationName() result as the instance name. There is no need to call member functions with an explicit this pointer, that

Re: [wsjt-devel] UDP Server

2015-03-17 Thread Michael Black
I think I got this going pretty well. I added a Network tab to the configuration and the settings are saved in the WSJT-X.ini file. Here's the patch as it is now for review and comments. A link below for a client that receives the decoded lines (either localhost on the same computer or turn broad

Re: [wsjt-devel] UDP Server

2015-03-17 Thread Bill Somerville
Mike W9MDB 73 Bill G4WJS. > > -Original Message- > From: Bill Somerville [mailto:g4...@classdesign.com] > Sent: Tuesday, March 17, 2015 11:11 AM > To: wsjt-devel@lists.sourceforge.net > Subject: Re: [wsjt-devel] UDP Server > > On 17/03/2015 15:56, Michael Black wrote: > >

Re: [wsjt-devel] UDP Server

2015-03-17 Thread Michael Black
14.078 Mike W9MDB -Original Message- From: Bill Somerville [mailto:g4...@classdesign.com] Sent: Tuesday, March 17, 2015 11:11 AM To: wsjt-devel@lists.sourceforge.net Subject: Re: [wsjt-devel] UDP Server On 17/03/2015 15:56, Michael Black wrote: Hi Mike, > Makes sense...I was testing w

Re: [wsjt-devel] UDP Server

2015-03-17 Thread Bill Somerville
Somerville [mailto:g4...@classdesign.com] > Sent: Tuesday, March 17, 2015 10:34 AM > To: wsjt-devel@lists.sourceforge.net > Subject: Re: [wsjt-devel] UDP Server > > On 17/03/2015 15:14, Michael Black wrote: > Hi Mike, >> I'll keep it simple and just send the band to t

Re: [wsjt-devel] UDP Server

2015-03-17 Thread Bill Somerville
e other way around. The UI widget is initialized with a default value but that gets replaced on the first update from the rig. > > Mike W9MDB 73 Bill G4WJS. > > > > > -Original Message- > From: Bill Somerville [mailto:g4...@classdesign.com] > Sent: Tuesday, Marc

Re: [wsjt-devel] UDP Server

2015-03-17 Thread Michael Black
re the 1.838 gets set. I see it in Configuration.cpp. Mike W9MDB -Original Message- From: Bill Somerville [mailto:g4...@classdesign.com] Sent: Tuesday, March 17, 2015 10:34 AM To: wsjt-devel@lists.sourceforge.net Subject: Re: [wsjt-devel] UDP Server On 17/03/2015 15:14, Michael Black wr

Re: [wsjt-devel] UDP Server

2015-03-17 Thread Michael Black
Bill Somerville [mailto:g4...@classdesign.com] Sent: Tuesday, March 17, 2015 9:15 AM To: WSJT software development Subject: Re: [wsjt-devel] UDP Server On 17/03/2015 13:21, Michael Black wrote: Hi Mike, > Question on determining band. I'd like to send the desired CQ band > info to WS

Re: [wsjt-devel] UDP Server

2015-03-17 Thread Bill Somerville
On 17/03/2015 13:21, Michael Black wrote: Hi Mike, > Question on determining band. I'd like to send the desired CQ band info to > WSJT-X which means WSJT-X has to tell the client what band was decoded. > PAOTBR sent a patch in to add band to the separator that hasn't been > integrated yet: > >

Re: [wsjt-devel] UDP Server

2015-03-17 Thread Bill Somerville
On 17/03/2015 13:21, Michael Black wrote: Hi Mike, > Question on determining band. I'd like to send the desired CQ band info to > WSJT-X which means WSJT-X has to tell the client what band was decoded. > PAOTBR sent a patch in to add band to the separator that hasn't been > integrated yet: > >

Re: [wsjt-devel] UDP Server

2015-03-17 Thread Michael Black
Question on determining band. I'd like to send the desired CQ band info to WSJT-X which means WSJT-X has to tell the client what band was decoded. PAOTBR sent a patch in to add band to the separator that hasn't been integrated yet:     QString band = ADIF::bandFromFrequency ((m_dialFreq +

Re: [wsjt-devel] UDP Server

2015-03-14 Thread Bill Somerville
Hi again Mike, related to this I have my new processing of decoded messages changes ready for commit. I was testing them but I have done enough to justify committing them to the development branch. They are going to collide with your UDP receiver changes so I will commit them now, you probab

Re: [wsjt-devel] UDP Server

2015-03-14 Thread Michael Black
Take#2. Got the message going into Rx Frequency side now...but it's finding a "\n" at the end of the text and I don't know where it's coming from. Either I'm doing something stupid or some object is automatically adding it. 33 bytes come across from the client. I remove the "\n" from decodedtext

Re: [wsjt-devel] UDP Server

2015-03-14 Thread Bill Somerville
Hi All, in case anyone is confused, in this thread all references by me to the readReady() Qt signal should be readyRead() as in QIODevice::readyRead(). I knew what I meant but not what I typed :( 73 Bill G4WJS. -- Div

Re: [wsjt-devel] UDP Server

2015-03-14 Thread Bill Somerville
command that JTAlert can utilize i.e. initiate a QSO from an alert. I'll play with it a bit and see what works… Thanks… Mike W9MDB 73 Bill G4WJS. *From:*Bill Somerville [mailto:g4...@classdesign.com] *Sent:* Saturday, March 14, 2015 10:09 AM *To:* wsjt-devel@lists.sourceforge.net *

Re: [wsjt-devel] UDP Server

2015-03-14 Thread Michael Black
it and see what works. Thanks. Mike W9MDB From: Bill Somerville [mailto:g4...@classdesign.com] Sent: Saturday, March 14, 2015 10:09 AM To: wsjt-devel@lists.sourceforge.net Subject: Re: [wsjt-devel] UDP Server Hi Mike, I did note your comments on the Hamapps list related to this. Firs

Re: [wsjt-devel] UDP Server

2015-03-14 Thread Bill Somerville
Hi Mike, I did note your comments on the Hamapps list related to this. First off it would help to have a clear idea of what remote control features you are considering. I ask because the way that the activity windows are currently implemented may not be very amenable what you might wish to do