[hpsdr] Setting freq on PowerSDR.

KF6C brian at kf6c.com
Wed Aug 26 23:29:02 PDT 2015


Thank you for your help John.

I had no idea it is that easy to control PowerSDR from an Arduino.

I now have a knob tuned  SDR with all the feel of a 1960's radio or a 
1960,s radio with state of the art panadapter /waterfall display.

It consists of a Mercury/Penelope/ Hercules SDR contoled by a 1966 
Eddystone EA12 tube/valve receiver. I have removed the ground lug from 
the EA12 and temporarily replaced it with a BNC line coupled to the VFO. 
The Arduino frequency counts the VFO and outputs the result to CAT.

I would like to reduce the latency a little but it works quit well. It 
makes switching between playing with old radios and the state of the 
art  real quick.

Thanks again.

Brian KF6C.


On 08/25/2015 10:39 AM, John Melton wrote:
> ***** High Performance Software Defined Radio Discussion List *****
>
>
>
> I just realised that I only sent this reply directly to Brian and not 
> to the list.
>
> This will send the CAT command to set VFO A frequency. Change the ZZFA 
> to ZZFB to change the VFO B frequency.
>
> -- John g0orx/n6lyt
>
>
> -------- Forwarded Message --------
> Subject: 	Re: [hpsdr] Setting freq on PowerSDR.
> Date: 	Tue, 25 Aug 2015 16:21:03 +0100
> From: 	John Melton <john.d.melton at googlemail.com>
> To: 	KF6C <brian at kf6c.com>
>
>
>
> Hi Brian,
>
> The simplest way is to send a CAT command over the USB-Serial interface:
>
>
> long frequency;
>
> void setup() {
>    Serial.begin(9600);
>
>    // test
>    frequency=14135000;
>    sendFrequency(frequency);
> }
>
> void loop() {
>    // put your main code here, to run repeatedly:
> }
>
> void sendFrequency(long f) {
>    char cf[17];
>    sprintf(cf, "ZZFA%011ld;", f);
>    Serial.print(cf);
> }
>
>
> The output from an Arduino Uno using the Serial Monitor was:
>
> ZZFA00014135000;
>
>
> Regards,
>
> John g0orx/n6lyt
>
> On 25/08/15 15:57, KF6C wrote:
>
> > ***** High Performance Software Defined Radio Discussion List *****
> >
> > With the wanted frequency in an Arduino is there a  simple way to load
> > this into PowerSDR?
> >
> > 73 Brian KF6C
> > _______________________________________________
> > HPSDR Discussion List
> > To post msg:hpsdr at openhpsdr.org
> > Subscription help:
> >http://lists.openhpsdr.org/listinfo.cgi/hpsdr-openhpsdr.org
> > HPSDR web page:http://openhpsdr.org
> > Archives:http://lists.openhpsdr.org/pipermail/hpsdr-openhpsdr.org/
>
>
>
>
>
> _______________________________________________
> HPSDR Discussion List
> To post msg: hpsdr at openhpsdr.org
> Subscription help: http://lists.openhpsdr.org/listinfo.cgi/hpsdr-openhpsdr.org
> HPSDR web page: http://openhpsdr.org
> Archives: http://lists.openhpsdr.org/pipermail/hpsdr-openhpsdr.org/

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openhpsdr.org/pipermail/hpsdr-openhpsdr.org/attachments/20150826/d77cfb38/attachment-0001.htm>


More information about the Hpsdr mailing list