Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-31 Thread Bill Somerville
On 29/08/2015 14:26, Håken Hveem wrote: > Audio InputOutput Device Name > Device Channels Channels > -- > 02 8 HDA Intel PCH: ALC892 Analog (hw:0,0) > 10 2 HDA Intel

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-31 Thread KI7MT
To check the available sampling rates, he can use lsusb to find the device ID, then look at the sample frequencies, mine is by TI, here an example, in a terminal: * lsusb * My Device --> Bus 002 Device 004: ID 08bb:2906 Texas Instruments * Then probe the ID for tSamFreq: * lsusb -v -d 08bb:2906

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-31 Thread Richard Bown
On Mon, 31 Aug 2015 09:58:24 -0600 KI7MT wrote: > To check the available sampling rates, he can use lsusb to find the > device ID, then look at the sample frequencies, mine is by TI, here an > example, in a terminal: > > * lsusb > * My Device --> Bus 002 Device 004: ID

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-31 Thread Håken Hveem
FYI, the results of that command is: lsusb -v -d 2405:0002 | grep tSamFreq | sed -e "s,^.* ,," | sort -nu Couldn't open device, some information will be missing 44100 48000 Den 31. aug. 2015 17:58, skrev KI7MT: > To check the available sampling rates, he can use lsusb to find the > device ID,

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-31 Thread KI7MT
Hi Haveem, I don't have a SL to test with, but, did find this today, which is along the lines of what Bill was referring too: https://wiki.ubuntu.com/UbuntuHams/wsjtSetup 73's Greg, KI7MT On 08/31/2015 04:09 PM, Håken Hveem wrote: > FYI, the results of that command is: > lsusb -v -d

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-30 Thread Håken Hveem
It could be that the chipset on the rigblaster advantage is causing problems. info from dmesg : ) [3.321021] usb 2-1.6.1: new full-speed USB device number 4 using ehci-pci [3.414671] usb 2-1.6.1: New USB device found, idVendor=2405, idProduct=0003 [3.414675] usb 2-1.6.1: New USB

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-30 Thread Håken Hveem
Ok, i can test it on a pure Ubuntu distro and see if the same problem exists there. Den 31. aug. 2015 01:13, skrev KI7MT: Hi Haveem, At this point, all I can suggest is testing these packages on the Ubuntu Distro they were targeted for / tested against. As the main WSJT development

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-30 Thread KI7MT
Hi Haveem, At this point, all I can suggest is testing these packages on the Ubuntu Distro they were targeted for / tested against. As the main WSJT development effort for WSJT-X is = 1.6.0+, I seriously doubt any time will be expended on on v1.1 ( I've not seen any at all, in a very long time )

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-29 Thread Bill Somerville
On 29/08/2015 12:19, Richard Bown wrote: Edit the Makefile change the python and f2py lines to this:- # WSJT specific Fortran flags FFLAGS += -O2 -fbounds-check -fno-second-underscore -Wall -Wno-conversion -Wno-character-truncation CFLAGS += -I. -DBIGSYM

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-29 Thread Håken Hveem
Ok, i have tried to make it with python3, but there is still a problem related to the Alsa driver: python3 -O ./wsjt.py ** WSJT Version 10.0 r5755 , by K1JT Revision date: 2015-08-05 22:04:20 +0200 (on., 05 aug. 2015) Run date: Sat

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-29 Thread Richard Bown
On Sat, 29 Aug 2015 10:47:26 +0100 Richard Bown rich...@g8jvm.com wrote: On Sat, 29 Aug 2015 03:13:45 +0200 Håken Hveem krbjh...@online.no wrote: Ok, i have tried to build it with jtsdk, and that results in exactly the same sample rate related bug. snip Hej Haaken If you still have

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-29 Thread Richard Bown
On Sat, 29 Aug 2015 15:26:20 +0200 Håken Hveem krbjh...@online.no wrote: Ok, i have tried to make it with python3, but there is still a problem related to the Alsa driver: python3 -O ./wsjt.py ** WSJT Version 10.0 r5755 , by

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-29 Thread KI7MT
That what I use in my scripts, as the WSJT autotools / m4 macros need a bit of updating. For Debian/Ubuntu based distros: For x86 ./configure \ --with-portaudio-lib-dir=/usr/lib/i386-linux-gnu \ --with-portaudio-include-dir=/usr/include \ PYTHON=/usr/bin/python3 \ F2PY=/usr/bin/f2py3 For x86_64

[wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-28 Thread Håken Hveem
Hello, there seems to be some faults with the wsjt.py file. Fault 1: running ./wsjt resluts in the following error message: Traceback (most recent call last): File /usr/bin/wsjt.py, line 5, in module from tkinter import * ImportError: No module named tkinter I fixed this with replacing all

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-28 Thread Greg Beam
Hi Haveem, I forgot to add; to test the import commands, open a python3 console and test the import commands: In a terminal, simply type python3 to open a python3 console. Test-1: from tkinter.filedialog import * filedilaog Note the results. Test-2 from Tkinter.filedialog import *

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-28 Thread KI7MT
Hi Haveem, Exactly what it should be, now, close the python3 interrupter, and reopen, type: from tkinter.filedialog import * FileDialog Note the different. Tkinter, is not present in Python3 which is your original error. Additionally, when running, after building with JTSDK, use ./wsjt.sh

Re: [wsjt-devel] Problems with wsjt.py compiled on Linux mint

2015-08-28 Thread KI7MT
Hi Hveen, Two issues; 1- What you posted is not from JTSDK build script and .. 2- Your trying to run wsjt.py from the source directory To run after building with JTSDK, *follow the prompts!!* The built package should be located in: /home/Nedlastinger/jtsdk/wsjt/10.0/5770/install so, in the