¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Re: Default Quisk config file path change
The configuration file is ~/.quisk_conf.py and is invisible. Or do you mean the files quisk_init.json, quisk_settings.json and others? If so, create a configuration file ~/.quisk_conf.py with these
By jimahlstrom · #2981 ·
Re: Hamlib level AF
I will fix this in the next release. Jim N2ADR
By jimahlstrom · #2980 ·
Default Quisk config file path change
Hello! Is there any way to change the default config file path for Quisk (on Linux)? The ~/ path is not ideal and creates a mess in my home directory. Thanks! Regards, Daniel OK2VLK
By AsciiWolf <mail@...> · #2979 ·
Re: Virtual Environment
Glad to see I'm not the only one who's confused! Pipx seems to be what the raspbian foundation people are recommending, but they're very hard to pin down on the subject. I'm afraid I don't know the
By Mario Vano AE0GL · #2978 ·
Re: Virtual Environment
Using pipx seems like a good idea, but I must be missing something. I am trying to run Quisk from the virtual environment VENV created by pipx, but Quisk?complains that module wx is missing. The wx
By jimahlstrom · #2977 ·
Re: Hamlib level AF
All, OK this was fixed by changing line 360 of quisk_widgets.py from : self.slider.SetValue(value) to : self.slider.SetValue(int(value))
By David Jones · #2976 ·
Re: Hamlib level AF
If you have this code in quisk_widgets.py ? ? value = int(value + 0.5)? ? self.SetValue(value) Change it to? ? value = int(value + 0.5)? ? self.SetValue(int(value)) See if that fixes the
By Mike Black <mdblack98@...> · #2975 ·
Re: Hamlib level AF
Mike, I've verified that the files mentioned in the traceback (/usr/local/lib/python3.10/dist-packages/quisk/quisk.py and /usr/local/lib/python3.10/dist-packages/quisk/quisk_widgets.py) are identical
By David Jones · #2974 ·
Re: Hamlib level AF
Double-check the SetLevel function in quisk.py.You can see below the "AF" parameter expects a float.Maybe you have an old quisk.py hanging around? ? def SetLevel(self):? ? name, value =
By Mike Black <mdblack98@...> · #2973 ·
Hamlib level AF
Hello, I'm testing quisk hamlib control and have run into an issue. Not sure I'm do this correctly : rigctl -m 2 -r localhost:4575 Rig command: _ Info: Quisk version 4.2.25 Rig command: l Level: AF
By David Jones · #2972 ·
Re: Virtual Environment
I ran into the same problem on the latest Raspberry Pi OS. It looks like OS's are no longer going to allow installing Python packages into the system Python directory. I will have to figure out a
By jimahlstrom · #2971 ·
Re: Virtual Environment
That worked perfectly, thanks, Mario! Regards, Randall AE8RS
By Randall Sanborn · #2970 ·
Re: Virtual Environment
The new OS, Bookworm , has new policies for python programs. (It also has many other changes). Unfortunately it's the way forward and we have no choice in the matter. It's required for the new Pi 5 to
Virtual Environment
I tried installing Quisk using the online instructions and am getting crabbed at by Python that I need to install it in a virtual environment. Is that the preferred way to install it? This is a fresh
By Randall Sanborn · #2968 ·
Re: Quisk Version 4.2.27 December 2023
Thanks Jim. BTW, the IO board test program n2adr_test/build/main.uf2 now generates a test pattern in response to a "1" written to REG_ANTENNA_TUNER. This may be useful to other SDR authors. Jim N2ADR
By jimahlstrom · #2967 ·
Re: Quisk Version 4.2.27 December 2023
I just ran a test and this seems to work fine. Thanks! Jim N1ADJ
By Jim Ancona N1ADJ · #2966 ·
Quisk Version 4.2.27 December 2023
This release corrects the Hermes-Lite2 antenna tuner logic.? Jim, N1ADJ, has an antenna tuner and is helping debug. Thanks Jim! Jim N2ADR
By jimahlstrom · #2965 ·
Re: Quisk Version 4.2.26 December 2023
Hi Jim, All the code is in hermes/quisk_widgets.py. Does the 0xEE appear in the ATU control window? When it does, the "Spot" button should be pressed and red. Is it? As your code operates, the codes
By jimahlstrom · #2964 ·
Re: Quisk Version 4.2.26 December 2023
Hi Jim, I just gave this a try. It seems like Quisk never initiates transmit when the IO Board sets the tuner register to 0xEE. So my firmware times out and generates an error because it never sees
By Jim Ancona N1ADJ · #2963 ·
Quisk Version 4.2.26 December 2023
This release has support for the Hermes-Lite2 antenna tuner protocol. The tuner button is on the last row of the screen at the left. Please test. Jim N2ADR
By jimahlstrom · #2962 ·