¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Re: Reading band or frequency from quisk_widgets.py
That is true, but you could also write your own hardware file and put your logic into ChangeBand(). This is called whenever the user changes band. Jim N2ADR
By jimahlstrom · #3071 ·
Re: quisk-4.2.29: minor NO ATU glitch
Hello?Jaroslav, The Hardware -> Antenna tuner == None item refers to an antenna tuner attached to the end plate of the HL2. The "ATU" button on the last line of the screen refers to an antenna tuner
By jimahlstrom · #3070 ·
Re: Tips on interfacing I/Q data into quisk?
Hello Rob, The SDR-IQ uses the hardware file quisk_hardware_sdriq.py and all the code is in Python. The old sdriqpkg directory has the file sdriq.c. I can send you sdriq.c if you don't have it. But
By jimahlstrom · #3069 ·
Re: Tips on interfacing I/Q data into quisk?
Thanks, Ben, for the heads up on the WIFI scans. Right now, I am using wired Ethernet on the Linux box, and no scans are set up at all on the Pico. I'll have to check this out when I finish getting
By Rob Frohne (KL7NA) · #3068 ·
Re: Tips on interfacing I/Q data into quisk?
Hi Rob, Make sure you disable WiFi scans at both WiFi clients (APs do not scan) ... otherwise you will likely get periodic discontinuities as the WiFi clients briefly (e.g. ~100msec bursts every few
By Ben Cahill · #3067 ·
quisk-4.2.29: minor NO ATU glitch
Hi, if no ATU is connected to HL2 and tuner is disabled (Hardware -> Antenna tuner = None) the ATU listbox on the main panel shows "ATU". If the listbox is clicked the text changes to "No ATU". I
By Jaroslav ?karvada · #3066 ·
Re: Tips on interfacing I/Q data into quisk?
Thanks Mike, I got my board back from JLCPCB and did some testing. It works okay over USB, but all the 1 uV birdies go away when I disconnect it from USB, so I was motivated to send the ADC data over
By Rob Frohne (KL7NA) · #3065 ·
Back From Skiing
Hello Group, I just got back from a ski trip. I will try to catch up as soon as possible. Jim N2ADR
By jimahlstrom · #3064 ·
Re: Tips on interfacing I/Q data into quisk?
Try suppressing the flush. You can use an IOBytes buffer and then write the buffer out to file.? That's probably the best/fastest solution.
By Mike Black <mdblack98@...> · #3063 ·
Re: Tips on interfacing I/Q data into quisk?
Hi Jim, My simple test to see how Python keeps up doesn't seem encouraging. I just did something simple like this: import os import serial port = "/dev/ttyACM0" baudRate = 460800 try: ser =
By Rob Frohne (KL7NA) · #3062 ·
Re: Tips on interfacing I/Q data into quisk?
Hi Jim, I was looking at version 4.2.28 since I had the source handy, and was looking at sdriq.cpp as you recommended. I thought before I got to hacking around to try and get something going, I should
By Rob Frohne (KL7NA) · #3061 ·
Re: Reading band or frequency from quisk_widgets.py
I've finally figured out how to do this: The variable can be accessed as "self.application.lastBand" from inside the function "UpdateText(self)"
By Michael DK1MI/N1BSD · #3060 ·
Re: Bug. Window width pixels
The problem was solved as follows. #wFrame, h = frame.GetClientSize().Get()?# client window width wFrame = conf.window_width - 15
By Nick Abramenko RA3PKJ · #3059 ·
Reading band or frequency from quisk_widgets.py
Hi group, I am trying to extend the following widget: https://github.com/haklein/hrctl/blob/main/hermes_widgets.py What I am trying to achieve is to automatically change the selected band on the
By Michael DK1MI/N1BSD · #3058 ·
Re: Bug. Window width pixels
The value of?wFrame in the second line is incorrect at first, and after the second reboot it becomes correct.
By Nick Abramenko RA3PKJ · #3057 ·
Re: Hamlib/rigctl compatibility?
This is very interesting information. I feel that it belongs in a document for people wanting to add support for their SDR to Hamlib. I have been reading the README.* files in the Hamlib repo. May I
By Roger David Powers · #3056 ·
Re: Quisk Error on pip install (Cannot open include file: 'sys/time.h') on Windows 11
Which compiler? With MSVC I assume since it does not have 'sys/time.h'. Your student need to use MinGW. But I've no experience with "pip install" and MinGW. Untested: "python setup.py build -c
By Gisle Vanem · #3055 ·
Quisk Error on pip install (Cannot open include file: 'sys/time.h') on Windows 11
Does anyone have any ideas on how to fix this problem? This is from ac2yd/remote.c(12). This is with Python 3.12.1. One of my students is having this issue. Rob KL7NA -- Rob Frohne, PhD PE School of
By Rob Frohne (KL7NA) · #3054 ·
Re: Hamlib/rigctl compatibility?
The reason rigctld emulation is a bad idea is that it changes over time.? And the client may want vfo mode or not so most every command has to be checked for VFO. A rig definition never changes --
By Mike Black <mdblack98@...> · #3053 ·
Re: Hamlib/rigctl compatibility?
In /g/n2adr-sdr/message/3043 we get a hint. You probably should read the whole thread when you get a chance. Personally I think emulating rigctld was a good idea, and I don't know why
By Roger David Powers · #3052 ·