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 PCH: ALC892 Digital (hw:0,1)
> 22 0   HDA Intel PCH: ALC892 Alt Analog (hw:0,2)
> 30 8   HDA NVidia: HDMI 0 (hw:1,3)
> 40 8   HDA NVidia: HDMI 1 (hw:1,7)
> 50 8   HDA NVidia: HDMI 2 (hw:1,8)
> 60 8   HDA NVidia: HDMI 3 (hw:1,9)
> 71 2   RIGblaster Advantage Audio: USB Audio (hw:2,0)
> 8   128128   sysdefault
> 90 8   front
>100 8   surround40
>110128   surround41
>120128   surround50
>130 8   surround51
>140 8   surround71
>150 2   iec958
>160 2   spdif
>17   3232   pulse
>180 2   dmix
>19   3232   default
>
> User requested devices:   Input =  7   Output =  7
> Default devices:  Input = 19   Output = 19
> Will open devices:Input =  7   Output =  7
> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
> bt_audio_service_open: connect() failed: Connection refused (111)
> bt_audio_service_open: connect() failed: Connection refused (111)
> bt_audio_service_open: connect() failed: Connection refused (111)
> bt_audio_service_open: connect() failed: Connection refused (111)
> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
> Expression 'alsa_snd_pcm_hw_params_set_rate_near( pcm, hwParams,
> , NULL )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 3201
> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
> Cannot connect to server socket err = No such file or directory
> Cannot connect to server request channel
> jack server is not running or cannot be started
> Expression 'parameters->channelCount <= maxChans' failed in
> 'src/hostapi/alsa/pa_linux_alsa.c', line: 1514
> Expression 'ValidateParameters( inputParameters, hostApi,
> StreamDirection_In )' failed in 'src/hostapi/alsa/pa_linux_alsa.c',
> line: 1838
> Error opening input audio stream.
>  Errortext: Invalid number of channels
>  Number: -9998
> Error opening output audio stream.
>  Errortext: Invalid sample rate
>  Number: -9997
> Error  3 in JTaudio, you will only be able to work offline.
Hi All,

watching the slow progress of this thread in terms of resolutions has 
annoyed me enough to look at the source code of WSJT. Although I am not 
an expert in Linux audio configurations, maybe the following comments 
might help:

WSJT opens portaudio input and output streams expecting to get a 16bit 
11.025kHz sample rate and two channels. It would appear, from the error 
messages, that the RigBlaster codec is mono for input and doesn't 
directly support 11.025kHz sample rates.

If I were having this issue I would investigate how to create a output 
virtual sound device which supports a 11.025kHz sample rate and an input 
virtual sound device that maps a single channel to left and right stereo 
along with a 11.025kHz sample rate. This may be possible using ALSA 
configuration (~/.asoundrc) or maybe by using pulseaudio which has 
advanced virtual device construction and an ALSA backend capability so 
could be accessed via the portaudio library that WSJT uses.

The way WSJT is coded does not allow for other sample rates or channel 
configurations so the above mapping are needed for it to work with the 
RigBlaster codec.

YMMV
73
Bill
G4WJS.

--
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


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 | grep tSamFreq | sed -e "s,^.* ,," | sort -nu

My Results:
8000
11025
16000
22050
32000
44100
48000


73's
Greg, KI7MT


On 08/31/2015 09:36 AM, Bill Somerville wrote:
> 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 PCH: ALC892 Digital (hw:0,1)
>> 22 0   HDA Intel PCH: ALC892 Alt Analog (hw:0,2)
>> 30 8   HDA NVidia: HDMI 0 (hw:1,3)
>> 40 8   HDA NVidia: HDMI 1 (hw:1,7)
>> 50 8   HDA NVidia: HDMI 2 (hw:1,8)
>> 60 8   HDA NVidia: HDMI 3 (hw:1,9)
>> 71 2   RIGblaster Advantage Audio: USB Audio (hw:2,0)
>> 8   128128   sysdefault
>> 90 8   front
>>100 8   surround40
>>110128   surround41
>>120128   surround50
>>130 8   surround51
>>140 8   surround71
>>150 2   iec958
>>160 2   spdif
>>17   3232   pulse
>>180 2   dmix
>>19   3232   default
>>
>> User requested devices:   Input =  7   Output =  7
>> Default devices:  Input = 19   Output = 19
>> Will open devices:Input =  7   Output =  7
>> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
>> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
>> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
>> bt_audio_service_open: connect() failed: Connection refused (111)
>> bt_audio_service_open: connect() failed: Connection refused (111)
>> bt_audio_service_open: connect() failed: Connection refused (111)
>> bt_audio_service_open: connect() failed: Connection refused (111)
>> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
>> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
>> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
>> Expression 'alsa_snd_pcm_hw_params_set_rate_near( pcm, hwParams,
>> , NULL )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 3201
>> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
>> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
>> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
>> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
>> Cannot connect to server socket err = No such file or directory
>> Cannot connect to server request channel
>> jack server is not running or cannot be started
>> Expression 'parameters->channelCount <= maxChans' failed in
>> 'src/hostapi/alsa/pa_linux_alsa.c', line: 1514
>> Expression 'ValidateParameters( inputParameters, hostApi,
>> StreamDirection_In )' failed in 'src/hostapi/alsa/pa_linux_alsa.c',
>> line: 1838
>> Error opening input audio stream.
>>  Errortext: Invalid number of channels
>>  Number: -9998
>> Error opening output audio stream.
>>  Errortext: Invalid sample rate
>>  Number: -9997
>> Error  3 in JTaudio, you will only be able to work offline.
> Hi All,
> 
> watching the slow progress of this thread in terms of resolutions has 
> annoyed me enough to look at the source code of WSJT. Although I am not 
> an expert in Linux audio configurations, maybe the following comments 
> might help:
> 
> WSJT opens portaudio input and output streams expecting to get a 16bit 
> 11.025kHz sample rate and two channels. It would appear, from the error 
> messages, that the RigBlaster codec is mono for input and doesn't 
> directly support 11.025kHz sample rates.
> 
> If I were having this issue I would investigate how to create a output 
> virtual sound device which supports a 11.025kHz sample rate and an input 
> virtual sound device that maps a single channel to left and right stereo 
> along with a 11.025kHz sample rate. This may be possible using ALSA 
> configuration (~/.asoundrc) or maybe by using pulseaudio which has 
> advanced virtual device construction and an ALSA backend capability so 
> could be accessed via the portaudio library that WSJT uses.
> 
> The way WSJT is coded does not allow for other sample rates or channel 
> configurations so the above mapping are needed for it to work with the 
> RigBlaster codec.
> 
> YMMV
> 73
> Bill
> G4WJS.
> 

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 08bb:2906 Texas Instruments
> 
> * Then probe the ID for tSamFreq:
> * lsusb -v -d 08bb:2906 | grep tSamFreq | sed -e "s,^.* ,," | sort -nu
> 
> My Results:
> 8000
> 11025
> 16000
> 22050
> 32000
> 44100
> 48000
> 
> 
> 73's
> Greg, KI7MT


I very much doubt it is a sampling rate problem, as the Rigblaster is in use 
with WSJT modes
already. If the sampling rate was not available there would have been very loud 
noises made by
users, and seen on the lists.

I would strongly suggest Haaken has a look at page 10 of the Rigblaster user 
manual, maybe more
than a look, sorta read , learn and inwardly digest.
Looking at the documentation,  this is very much a user interface problem and 
not a wsjt problem.
> 
> 
> On 08/31/2015 09:36 AM, Bill Somerville wrote:
> > 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 PCH: ALC892 Digital (hw:0,1)
> >> 22 0   HDA Intel PCH: ALC892 Alt Analog (hw:0,2)
> >> 30 8   HDA NVidia: HDMI 0 (hw:1,3)
> >> 40 8   HDA NVidia: HDMI 1 (hw:1,7)
> >> 50 8   HDA NVidia: HDMI 2 (hw:1,8)
> >> 60 8   HDA NVidia: HDMI 3 (hw:1,9)
> >> 71 2   RIGblaster Advantage Audio: USB Audio 
> >> (hw:2,0)
> >> 8   128128   sysdefault
> >> 90 8   front
> >>100 8   surround40
> >>110128   surround41
> >>120128   surround50
> >>130 8   surround51
> >>140 8   surround71
> >>150 2   iec958
> >>160 2   spdif
> >>17   3232   pulse
> >>180 2   dmix
> >>19   3232   default
> >>
> >> User requested devices:   Input =  7   Output =  7
> >> Default devices:  Input = 19   Output = 19
> >> Will open devices:Input =  7   Output =  7
> >> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
> >> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM 
> >> cards.pcm.center_lfe
> >> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
> >> bt_audio_service_open: connect() failed: Connection refused (111)
> >> bt_audio_service_open: connect() failed: Connection refused (111)
> >> bt_audio_service_open: connect() failed: Connection refused (111)
> >> bt_audio_service_open: connect() failed: Connection refused (111)
> >> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
> >> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
> >> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
> >> Expression 'alsa_snd_pcm_hw_params_set_rate_near( pcm, hwParams,
> >> , NULL )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 3201
> >> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
> >> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
> >> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
> >> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
> >> Cannot connect to server socket err = No such file or directory
> >> Cannot connect to server request channel
> >> jack server is not running or cannot be started
> >> Expression 'parameters->channelCount <= maxChans' failed in
> >> 'src/hostapi/alsa/pa_linux_alsa.c', line: 1514
> >> Expression 'ValidateParameters( inputParameters, hostApi,
> >> StreamDirection_In )' failed in 'src/hostapi/alsa/pa_linux_alsa.c',
> >> line: 1838
> >> Error opening input audio stream.
> >>  Errortext: Invalid number of channels
> >>  Number: -9998
> >> Error opening output audio stream.
> >>  Errortext: Invalid sample rate
> >>  Number: -9997
> >> Error  3 in JTaudio, you will only be able to work offline.
> > Hi All,
> > 
> > watching the slow progress of this thread in terms of resolutions has 
> > annoyed me enough to look at the source code of WSJT. Although I am not 
> > an expert in Linux audio configurations, maybe the following comments 
> > might help:
> > 
> > WSJT opens portaudio input and output streams expecting to get a 16bit 
> > 11.025kHz sample rate and two channels. It would appear, from the error 
> > messages, that the RigBlaster codec is mono for input and doesn't 
> > 

[wsjt-devel] Simple feature request

2015-08-31 Thread Alessandro Gorobey
Hi All,

my propose is to add on all windows the some title, as in main window.
This is already be done in several windows:
   setWindowTitle (QApplication::applicationName () + " - " + tr 
("Astronomical Data"));
setWindowTitle (QApplication::applicationName () + " - " + tr ("Callsign"));
setWindowTitle (QApplication::applicationName () + " - " + tr ("Wide 
Graph"));
and so on.
This also refer to directory where data/settings are saved.

My propose is to expand this to all windows generated by program wsjtx / 
wsjtxexp
This refer specific to configuration, but also to fast mode and other 
windows.
In some experiments I not found any collision to adopt this 
"setWindowTitle".

As is very simple use -r parameter for a mode and run more that one 
instance of program on a single computer this can create confusion in 
settings, as all settings windows have some title.

This help also do not create confusion with modes that need a tuned 
"Wide Graph" as suggested by Joe for "wsjtx -r wspr"

Thank in advance for attention

Sandro
IW3RAB



--
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] Simple feature request

2015-08-31 Thread Bill Somerville
On 31/08/2015 20:52, Alessandro Gorobey wrote:
> Hi All,
Hi Sandro,
>
> my propose is to add on all windows the some title, as in main window.
> This is already be done in several windows:
> setWindowTitle (QApplication::applicationName () + " - " + tr
> ("Astronomical Data"));
> setWindowTitle (QApplication::applicationName () + " - " + tr ("Callsign"));
> setWindowTitle (QApplication::applicationName () + " - " + tr ("Wide
> Graph"));
> and so on.
> This also refer to directory where data/settings are saved.
>
> My propose is to expand this to all windows generated by program wsjtx /
> wsjtxexp
The intent was to title all non-modal windows as you suggest, for modal 
windows it is obvious which instance they belong to without extending 
the title since activating them also raises the parent window.
> This refer specific to configuration, but also to fast mode and other
> windows.
> In some experiments I not found any collision to adopt this
> "setWindowTitle".
>
> As is very simple use -r parameter for a mode and run more that one
> instance of program on a single computer this can create confusion in
> settings, as all settings windows have some title.
>
> This help also do not create confusion with modes that need a tuned
> "Wide Graph" as suggested by Joe for "wsjtx -r wspr"
>
> Thank in advance for attention
>
> Sandro
> IW3RAB
73
Bill
G4WJS.

--
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] Simple feature request

2015-08-31 Thread Alessandro Gorobey
Hi Bill,
your accuracy is unparalleled,
but I hope that the request is clear

73
Sandro
IW3RAB

Il 31/08/2015 21:58, Bill Somerville ha scritto:
> On 31/08/2015 20:52, Alessandro Gorobey wrote:
>> Hi All,
> Hi Sandro,
>>
>> my propose is to add on all windows the some title, as in main window.
>> This is already be done in several windows:
>>  setWindowTitle (QApplication::applicationName () + " - " + tr
>> ("Astronomical Data"));
>> setWindowTitle (QApplication::applicationName () + " - " + tr ("Callsign"));
>> setWindowTitle (QApplication::applicationName () + " - " + tr ("Wide
>> Graph"));
>> and so on.
>> This also refer to directory where data/settings are saved.
>>
>> My propose is to expand this to all windows generated by program wsjtx /
>> wsjtxexp
> The intent was to title all non-modal windows as you suggest, for modal
> windows it is obvious which instance they belong to without extending
> the title since activating them also raises the parent window.
>> This refer specific to configuration, but also to fast mode and other
>> windows.
>> In some experiments I not found any collision to adopt this
>> "setWindowTitle".
>>
>> As is very simple use -r parameter for a mode and run more that one
>> instance of program on a single computer this can create confusion in
>> settings, as all settings windows have some title.
>>
>> This help also do not create confusion with modes that need a tuned
>> "Wide Graph" as suggested by Joe for "wsjtx -r wspr"
>>
>> Thank in advance for attention
>>
>> Sandro
>> IW3RAB
> 73
> Bill
> G4WJS.
>
> --
> ___
> wsjt-devel mailing list
> wsjt-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wsjt-devel
>

--
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


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, 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 | grep tSamFreq | sed -e "s,^.* ,," | sort -nu
> 
> My Results:
> 8000
> 11025
> 16000
> 22050
> 32000
> 44100
> 48000
> 
> 
> 73's
> Greg, KI7MT
> 
> 
> On 08/31/2015 09:36 AM, Bill Somerville wrote:
>> 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 PCH: ALC892 Digital (hw:0,1)
>>> 22 0   HDA Intel PCH: ALC892 Alt Analog (hw:0,2)
>>> 30 8   HDA NVidia: HDMI 0 (hw:1,3)
>>> 40 8   HDA NVidia: HDMI 1 (hw:1,7)
>>> 50 8   HDA NVidia: HDMI 2 (hw:1,8)
>>> 60 8   HDA NVidia: HDMI 3 (hw:1,9)
>>> 71 2   RIGblaster Advantage Audio: USB Audio 
>>> (hw:2,0)
>>> 8   128128   sysdefault
>>> 90 8   front
>>>100 8   surround40
>>>110128   surround41
>>>120128   surround50
>>>130 8   surround51
>>>140 8   surround71
>>>150 2   iec958
>>>160 2   spdif
>>>17   3232   pulse
>>>180 2   dmix
>>>19   3232   default
>>>
>>> User requested devices:   Input =  7   Output =  7
>>> Default devices:  Input = 19   Output = 19
>>> Will open devices:Input =  7   Output =  7
>>> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
>>> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
>>> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
>>> bt_audio_service_open: connect() failed: Connection refused (111)
>>> bt_audio_service_open: connect() failed: Connection refused (111)
>>> bt_audio_service_open: connect() failed: Connection refused (111)
>>> bt_audio_service_open: connect() failed: Connection refused (111)
>>> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
>>> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
>>> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
>>> Expression 'alsa_snd_pcm_hw_params_set_rate_near( pcm, hwParams,
>>> , NULL )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 3201
>>> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
>>> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
>>> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
>>> ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
>>> Cannot connect to server socket err = No such file or directory
>>> Cannot connect to server request channel
>>> jack server is not running or cannot be started
>>> Expression 'parameters->channelCount <= maxChans' failed in
>>> 'src/hostapi/alsa/pa_linux_alsa.c', line: 1514
>>> Expression 'ValidateParameters( inputParameters, hostApi,
>>> StreamDirection_In )' failed in 'src/hostapi/alsa/pa_linux_alsa.c',
>>> line: 1838
>>> Error opening input audio stream.
>>>  Errortext: Invalid number of channels
>>>  Number: -9998
>>> Error opening output audio stream.
>>>  Errortext: Invalid sample rate
>>>  Number: -9997
>>> Error  3 in JTaudio, you will only be able to work offline.
>> Hi All,
>>
>> watching the slow progress of this thread in terms of resolutions has 
>> annoyed me enough to look at the source code of WSJT. Although I am not 
>> an expert in Linux audio configurations, maybe the following comments 
>> might help:
>>
>> WSJT opens portaudio input and output streams expecting to get a 16bit 
>> 11.025kHz sample rate and two channels. It would appear, from the error 
>> messages, that the RigBlaster codec is mono for input and doesn't 
>> directly support 11.025kHz sample rates.
>>
>> If I were having this issue I would investigate how to create a output 
>> virtual sound device which supports a 11.025kHz sample rate and an input 
>> virtual sound device that maps a single channel to left and right stereo 
>> along with a 11.025kHz sample rate. This may be possible using ALSA 
>> configuration (~/.asoundrc) or maybe by using pulseaudio which 

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 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, 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 | grep tSamFreq | sed -e "s,^.* ,," | sort -nu
>>
>> My Results:
>> 8000
>> 11025
>> 16000
>> 22050
>> 32000
>> 44100
>> 48000
>>
>>
>> 73's
>> Greg, KI7MT
>>
>>
>> On 08/31/2015 09:36 AM, Bill Somerville wrote:
>>> 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 PCH: ALC892 Digital (hw:0,1)
 22 0   HDA Intel PCH: ALC892 Alt Analog (hw:0,2)
 30 8   HDA NVidia: HDMI 0 (hw:1,3)
 40 8   HDA NVidia: HDMI 1 (hw:1,7)
 50 8   HDA NVidia: HDMI 2 (hw:1,8)
 60 8   HDA NVidia: HDMI 3 (hw:1,9)
 71 2   RIGblaster Advantage Audio: USB Audio 
 (hw:2,0)
 8   128128   sysdefault
 90 8   front
100 8   surround40
110128   surround41
120128   surround50
130 8   surround51
140 8   surround71
150 2   iec958
160 2   spdif
17   3232   pulse
180 2   dmix
19   3232   default

 User requested devices:   Input =  7   Output =  7
 Default devices:  Input = 19   Output = 19
 Will open devices:Input =  7   Output =  7
 ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
 ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM 
 cards.pcm.center_lfe
 ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
 bt_audio_service_open: connect() failed: Connection refused (111)
 bt_audio_service_open: connect() failed: Connection refused (111)
 bt_audio_service_open: connect() failed: Connection refused (111)
 bt_audio_service_open: connect() failed: Connection refused (111)
 ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
 ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
 ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
 Expression 'alsa_snd_pcm_hw_params_set_rate_near( pcm, hwParams,
 , NULL )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 3201
 ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
 ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
 ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
 ALSA lib pcm_params.c:2162:(snd1_pcm_hw_refine_slave) Slave PCM not usable
 Cannot connect to server socket err = No such file or directory
 Cannot connect to server request channel
 jack server is not running or cannot be started
 Expression 'parameters->channelCount <= maxChans' failed in
 'src/hostapi/alsa/pa_linux_alsa.c', line: 1514
 Expression 'ValidateParameters( inputParameters, hostApi,
 StreamDirection_In )' failed in 'src/hostapi/alsa/pa_linux_alsa.c',
 line: 1838
 Error opening input audio stream.
  Errortext: Invalid number of channels
  Number: -9998
 Error opening output audio stream.
  Errortext: Invalid sample rate
  Number: -9997
 Error  3 in JTaudio, you will only be able to work offline.
>>> Hi All,
>>>
>>> watching the slow progress of this thread in terms of resolutions has 
>>> annoyed me enough to look at the source code of WSJT. Although I am not 
>>> an expert in Linux audio configurations, maybe the following comments 
>>> might help:
>>>
>>> WSJT opens portaudio input and output streams expecting to get a 16bit 
>>> 11.025kHz sample rate and two channels. It would appear, from the error 
>>> messages, that the RigBlaster codec is mono for input and doesn't 
>>> directly support 11.025kHz sample rates.
>>>
>>> If I were 

[wsjt-devel] WSJT-X 1.6.1-devel r5834, Tx in JTMSK

2015-08-31 Thread Alan VK2ZIW




Hi,
 


 

WSJT-X 1.6.1-devel r5834, works a treat 
but:
 


 

If I startup in JT9 mode, in JT9 set [Enable Tx] on, all is 
well.
 


 

If I then select mode JTMSK, and set [Enable Tx] on, all is 
well.
 

Problem:


 

Now, if I exit out 

 and re-run wsjt_exp, we come in in JTMSK mode.

I set [Enable Tx] on and it does not transmit.

If I then change mode to JT9 and back to JTMSK, all is well.


System: Fedora 21 x86_64, code from SVN

Audio: Behringer UCA202    PTT: DTR   Radio: None (actually FT-450) 


 

Alan
 VK2ZIW


 

Man's greatest waste of time: Worshipping the wrong 
God.
 

Consider 
Jesus.
 

---
 

Alan Beard               Unix Support 
Technician from 1984 to 
today
 

70 Wedmore Rd.           Sun Solaris, AIX, HP/UX, 
Linux, SCO, 
MIPS
 

Emu Heights N.S.W. 2750  Routers, terminal servers, printers, terminals 
etc..
 

+61 2 47353013 (h)       Support Programming, shell scripting, 
"C", 
assembler
 

0414 353013 (mobile)     After uni, electronics 
tech
 







--
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


[wsjt-devel] Problems with wsjt and Rigblaster advantage on Ubuntu

2015-08-31 Thread Håken Hveem
Here is the error messages from my attempt to run WSJT from Kamals ppa
on my ubuntu distro:


wsjt
**
WSJT Version 9.3 r2792 , by K1JT
Revision date: 2012-12-12 08:12:50 -0800 (Wed, 12 Dec 2012)
Run date: Mon Aug 31 11:17:32 2015 UTC
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
Cannot connect to server socket err = No such file or directory
Cannot connect to server request channel
jack server is not running or cannot be started

Audio Input Output Device Name
Device Channels Channels
--
0 2 8 HDA Intel PCH: ALC892 Analog (hw:0,0)
1 0 2 HDA Intel PCH: ALC892 Digital (hw:0,1)
2 2 0 HDA Intel PCH: ALC892 Alt Analog (hw:0,2)
3 0 8 HDA NVidia: HDMI 0 (hw:1,3)
4 0 8 HDA NVidia: HDMI 1 (hw:1,7)
5 0 8 HDA NVidia: HDMI 2 (hw:1,8)
6 0 8 HDA NVidia: HDMI 3 (hw:1,9)
7 1 2 RIGblaster Advantage Audio: USB Audio (hw:2,0)
8 128 128 sysdefault
9 0 8 front
10 0 8 surround40
11 0 128 surround41
12 0 128 surround50
13 0 8 surround51
14 0 8 surround71
15 0 2 iec958
16 0 2 spdif
17 32 32 pulse
18 0 2 dmix
19 32 32 default

User requested devices: Input = 7 Output = 7
Default devices: Input = 19 Output = 19
Will open devices: Input = 7 Output = 7
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
Cannot connect to server socket err = No such file or directory
Cannot connect to server request channel
jack server is not running or cannot be started
Expression 'parameters->channelCount <= maxChans' failed in
'src/hostapi/alsa/pa_linux_alsa.c', line: 1514
Expression 'ValidateParameters( inputParameters, hostApi,
StreamDirection_In )' failed in 'src/hostapi/alsa/pa_linux_alsa.c',
line: 1838
device 7 failed a request for two channels, trying with one channel
Error opening input audio stream.
Errortext: Invalid sample rate
Number: -9997
Error opening output audio stream.
Errortext: Invalid sample rate
Number: -9997
Error 3 in JTaudio, you will only be able to work offline.

Exactly the same error messages appears when i try to run it on Linux
mint 17.2


--
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] Problems with wsjt and Rigblaster advantage on Ubuntu

2015-08-31 Thread Richard Stanley
I never use wsjt what mode are you after ?
That version is very old current version is 10.0 5755
to build wsjt
build-wsjt
after jtsdk is installed.
do not need anybodys ppa if you compile from the info i gave you.

I have been reading what you write on the reflector.
I use wsjt-x 1.6.1 it has
jt65 all modes
jt9 all modes
iscatt
jtmsk (replacement for fsk)

Richard.

-Original Message- 
From: Håken Hveem
Sent: Monday, August 31, 2015 12:36 PM
To: wsjt-devel@lists.sourceforge.net
Subject: [wsjt-devel] Problems with wsjt and Rigblaster advantage on Ubuntu

Here is the error messages from my attempt to run WSJT from Kamals ppa
on my ubuntu distro:


wsjt
**
WSJT Version 9.3 r2792 , by K1JT
Revision date: 2012-12-12 08:12:50 -0800 (Wed, 12 Dec 2012)
Run date: Mon Aug 31 11:17:32 2015 UTC
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
Cannot connect to server socket err = No such file or directory
Cannot connect to server request channel
jack server is not running or cannot be started

Audio Input Output Device Name
Device Channels Channels
--
0 2 8 HDA Intel PCH: ALC892 Analog (hw:0,0)
1 0 2 HDA Intel PCH: ALC892 Digital (hw:0,1)
2 2 0 HDA Intel PCH: ALC892 Alt Analog (hw:0,2)
3 0 8 HDA NVidia: HDMI 0 (hw:1,3)
4 0 8 HDA NVidia: HDMI 1 (hw:1,7)
5 0 8 HDA NVidia: HDMI 2 (hw:1,8)
6 0 8 HDA NVidia: HDMI 3 (hw:1,9)
7 1 2 RIGblaster Advantage Audio: USB Audio (hw:2,0)
8 128 128 sysdefault
9 0 8 front
10 0 8 surround40
11 0 128 surround41
12 0 128 surround50
13 0 8 surround51
14 0 8 surround71
15 0 2 iec958
16 0 2 spdif
17 32 32 pulse
18 0 2 dmix
19 32 32 default

User requested devices: Input = 7 Output = 7
Default devices: Input = 19 Output = 19
Will open devices: Input = 7 Output = 7
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
Cannot connect to server socket err = No such file or directory
Cannot connect to server request channel
jack server is not running or cannot be started
Expression 'parameters->channelCount <= maxChans' failed in
'src/hostapi/alsa/pa_linux_alsa.c', line: 1514
Expression 'ValidateParameters( inputParameters, hostApi,
StreamDirection_In )' failed in 'src/hostapi/alsa/pa_linux_alsa.c',
line: 1838
device 7 failed a request for two channels, trying with one channel
Error opening input audio stream.
Errortext: Invalid sample rate
Number: -9997
Error opening output audio stream.
Errortext: Invalid sample rate
Number: -9997
Error 3 in JTaudio, you will only be able to work offline.

Exactly the same error messages appears when i try to run it on Linux
mint 17.2


--
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 2015.0.6125 / Virus Database: 4409/10548 - Release Date: 08/31/15 


--
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] Problems with wsjt and Rigblaster advantage on Ubuntu

2015-08-31 Thread Richard Bown
On Mon, 31 Aug 2015 13:36:59 +0200
Håken Hveem  wrote:

> Here is the error messages from my attempt to run WSJT from Kamals ppa
> on my ubuntu distro:
> 
> 
> wsjt
> **
> WSJT Version 9.3 r2792 , by K1JT
> Revision date: 2012-12-12 08:12:50 -0800 (Wed, 12 Dec 2012)
> Run date: Mon Aug 31 11:17:32 2015 UTC
> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
> bt_audio_service_open: connect() failed: Connection refused (111)
> bt_audio_service_open: connect() failed: Connection refused (111)
> bt_audio_service_open: connect() failed: Connection refused (111)
> bt_audio_service_open: connect() failed: Connection refused (111)
> Cannot connect to server socket err = No such file or directory
> Cannot connect to server request channel
> jack server is not running or cannot be started
> 
> Audio Input Output Device Name
> Device Channels Channels
> --
> 0 2 8 HDA Intel PCH: ALC892 Analog (hw:0,0)
> 1 0 2 HDA Intel PCH: ALC892 Digital (hw:0,1)
> 2 2 0 HDA Intel PCH: ALC892 Alt Analog (hw:0,2)
> 3 0 8 HDA NVidia: HDMI 0 (hw:1,3)
> 4 0 8 HDA NVidia: HDMI 1 (hw:1,7)
> 5 0 8 HDA NVidia: HDMI 2 (hw:1,8)
> 6 0 8 HDA NVidia: HDMI 3 (hw:1,9)
> 7 1 2 RIGblaster Advantage Audio: USB Audio (hw:2,0)
> 8 128 128 sysdefault
> 9 0 8 front
> 10 0 8 surround40
> 11 0 128 surround41
> 12 0 128 surround50
> 13 0 8 surround51
> 14 0 8 surround71
> 15 0 2 iec958
> 16 0 2 spdif
> 17 32 32 pulse
> 18 0 2 dmix
> 19 32 32 default
> 
> User requested devices: Input = 7 Output = 7
> Default devices: Input = 19 Output = 19
> Will open devices: Input = 7 Output = 7
> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
> bt_audio_service_open: connect() failed: Connection refused (111)
> bt_audio_service_open: connect() failed: Connection refused (111)
> bt_audio_service_open: connect() failed: Connection refused (111)
> bt_audio_service_open: connect() failed: Connection refused (111)
> Cannot connect to server socket err = No such file or directory
> Cannot connect to server request channel
> jack server is not running or cannot be started
> Expression 'parameters->channelCount <= maxChans' failed in
> 'src/hostapi/alsa/pa_linux_alsa.c', line: 1514
> Expression 'ValidateParameters( inputParameters, hostApi,
> StreamDirection_In )' failed in 'src/hostapi/alsa/pa_linux_alsa.c',
> line: 1838
> device 7 failed a request for two channels, trying with one channel
> Error opening input audio stream.
> Errortext: Invalid sample rate
> Number: -9997
> Error opening output audio stream.
> Errortext: Invalid sample rate
> Number: -9997
> Error 3 in JTaudio, you will only be able to work offline.
> 
> Exactly the same error messages appears when i try to run it on Linux
> mint 17.2
> 
Try using pulse audio to interface between the USB card and wsjt.



-- 
-- 
Best wishes /73 
Richard Bown

Email : rich...@g8jvm.com
HTTP  :  http://www.g8jvm.com
nil carborundum a illegitemis
##
Ham Call: G8JVM . QRV: 50-432 MHz + Microwave 23 cms 140W, 13 cms 100W & 3cms 5W
Maidenhead QRA: IO82SP38, LAT. 52 39.720' N LONG. 2 28.171 W
QRV VHF 6mtrs 200W, 4 mtrs 150W, 2mtrs 400W, 70cms 200W
OS: Linux Mint 17.1 x86_64 on a Dell Inspiron N5030 laptop
##
 


--
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] Problems with wsjt and Rigblaster advantage on Ubuntu

2015-08-31 Thread Håken Hveem
Same problem with the newest version too:

WSJT Version 10.0 r5755 , by K1JT
Revision date: 2015-08-05 22:04:20 +0200 (on., 05 aug. 2015)
Run date:   Mon Aug 31 12:14:53 2015 UTC
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)

Audio InputOutput Device Name
Device  Channels  Channels
--
   02 8   HDA Intel PCH: ALC892 Analog (hw:0,0)
   10 2   HDA Intel PCH: ALC892 Digital (hw:0,1)
   22 0   HDA Intel PCH: ALC892 Alt Analog (hw:0,2)
   30 8   HDA NVidia: HDMI 0 (hw:1,3)
   40 8   HDA NVidia: HDMI 1 (hw:1,7)
   50 8   HDA NVidia: HDMI 2 (hw:1,8)
   60 8   HDA NVidia: HDMI 3 (hw:1,9)
   71 2   RIGblaster Advantage Audio: USB Audio (hw:2,0)
   8   128128   sysdefault
   90 8   front
  100 8   surround40
  110128   surround41
  120128   surround50
  130 8   surround51
  140 8   surround71
  150 2   iec958
  160 2   spdif
  17   3232   pulse
  180 2   dmix
  19   3232   default

User requested devices:   Input =  7   Output =  7
Default devices:  Input = 19   Output = 19
Will open devices:Input =  7   Output =  7
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
Expression 'parameters->channelCount <= maxChans' failed in
'src/hostapi/alsa/pa_linux_alsa.c', line: 1514
Expression 'ValidateParameters( inputParameters, hostApi,
StreamDirection_In )' failed in 'src/hostapi/alsa/pa_linux_alsa.c',
line: 1838
Error opening input audio stream.
Errortext: Invalid number of channels
Number: -9998
Error opening output audio stream.
Errortext: Invalid sample rate
Number: -9997
Error  3 in JTaudio, you will only be able to work offline.





Den 31. aug. 2015 14:05, skrev Richard Stanley:
> I never use wsjt what mode are you after ?
> That version is very old current version is 10.0 5755
> to build wsjt
> build-wsjt
> after jtsdk is installed.
> do not need anybodys ppa if you compile from the info i gave you.
> 
> I have been reading what you write on the reflector.
> I use wsjt-x 1.6.1 it has
> jt65 all modes
> jt9 all modes
> iscatt
> jtmsk (replacement for fsk)
> 
> Richard.
> 
> -Original Message- 
> From: Håken Hveem
> Sent: Monday, August 31, 2015 12:36 PM
> To: wsjt-devel@lists.sourceforge.net
> Subject: [wsjt-devel] Problems with wsjt and Rigblaster advantage on Ubuntu
> 
> Here is the error messages from my attempt to run WSJT from Kamals ppa
> on my ubuntu distro:
> 
> 
> wsjt
> **
> WSJT Version 9.3 r2792 , by K1JT
> Revision date: 2012-12-12 08:12:50 -0800 (Wed, 12 Dec 2012)
> Run date: Mon Aug 31 11:17:32 2015 UTC
> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
> bt_audio_service_open: connect() failed: Connection refused (111)
> bt_audio_service_open: connect() failed: Connection refused (111)
> bt_audio_service_open: connect() failed: Connection refused (111)
> bt_audio_service_open: connect() failed: Connection refused (111)
> Cannot connect to server socket err = No such file or directory
> Cannot connect to server request channel
> jack server is not running or cannot be started
> 
> Audio Input Output Device Name
> Device Channels Channels
> --
> 0 2 8 HDA Intel PCH: ALC892 Analog (hw:0,0)
> 1 0 2 HDA Intel PCH: ALC892 Digital (hw:0,1)
> 2 2 0 HDA Intel PCH: ALC892 Alt Analog (hw:0,2)
> 3 0 8 HDA NVidia: HDMI 0 (hw:1,3)
> 4 0 8 HDA NVidia: HDMI 1 (hw:1,7)
> 5 0 8 HDA NVidia: HDMI 2 (hw:1,8)
> 6 0 8 HDA NVidia: HDMI 3 (hw:1,9)
> 7 1 2 RIGblaster 

Re: [wsjt-devel] Problems with wsjt and Rigblaster advantage on Ubuntu

2015-08-31 Thread Håken Hveem
And how do i interface interface between the USB card and wsjt, with
pulse audio ?



Den 31. aug. 2015 13:51, skrev Richard Bown:
> On Mon, 31 Aug 2015 13:36:59 +0200
> Håken Hveem  wrote:
> 
>> Here is the error messages from my attempt to run WSJT from Kamals ppa
>> on my ubuntu distro:
>>
>>
>> wsjt
>> **
>> WSJT Version 9.3 r2792 , by K1JT
>> Revision date: 2012-12-12 08:12:50 -0800 (Wed, 12 Dec 2012)
>> Run date: Mon Aug 31 11:17:32 2015 UTC
>> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
>> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
>> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
>> bt_audio_service_open: connect() failed: Connection refused (111)
>> bt_audio_service_open: connect() failed: Connection refused (111)
>> bt_audio_service_open: connect() failed: Connection refused (111)
>> bt_audio_service_open: connect() failed: Connection refused (111)
>> Cannot connect to server socket err = No such file or directory
>> Cannot connect to server request channel
>> jack server is not running or cannot be started
>>
>> Audio Input Output Device Name
>> Device Channels Channels
>> --
>> 0 2 8 HDA Intel PCH: ALC892 Analog (hw:0,0)
>> 1 0 2 HDA Intel PCH: ALC892 Digital (hw:0,1)
>> 2 2 0 HDA Intel PCH: ALC892 Alt Analog (hw:0,2)
>> 3 0 8 HDA NVidia: HDMI 0 (hw:1,3)
>> 4 0 8 HDA NVidia: HDMI 1 (hw:1,7)
>> 5 0 8 HDA NVidia: HDMI 2 (hw:1,8)
>> 6 0 8 HDA NVidia: HDMI 3 (hw:1,9)
>> 7 1 2 RIGblaster Advantage Audio: USB Audio (hw:2,0)
>> 8 128 128 sysdefault
>> 9 0 8 front
>> 10 0 8 surround40
>> 11 0 128 surround41
>> 12 0 128 surround50
>> 13 0 8 surround51
>> 14 0 8 surround71
>> 15 0 2 iec958
>> 16 0 2 spdif
>> 17 32 32 pulse
>> 18 0 2 dmix
>> 19 32 32 default
>>
>> User requested devices: Input = 7 Output = 7
>> Default devices: Input = 19 Output = 19
>> Will open devices: Input = 7 Output = 7
>> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
>> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
>> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
>> bt_audio_service_open: connect() failed: Connection refused (111)
>> bt_audio_service_open: connect() failed: Connection refused (111)
>> bt_audio_service_open: connect() failed: Connection refused (111)
>> bt_audio_service_open: connect() failed: Connection refused (111)
>> Cannot connect to server socket err = No such file or directory
>> Cannot connect to server request channel
>> jack server is not running or cannot be started
>> Expression 'parameters->channelCount <= maxChans' failed in
>> 'src/hostapi/alsa/pa_linux_alsa.c', line: 1514
>> Expression 'ValidateParameters( inputParameters, hostApi,
>> StreamDirection_In )' failed in 'src/hostapi/alsa/pa_linux_alsa.c',
>> line: 1838
>> device 7 failed a request for two channels, trying with one channel
>> Error opening input audio stream.
>> Errortext: Invalid sample rate
>> Number: -9997
>> Error opening output audio stream.
>> Errortext: Invalid sample rate
>> Number: -9997
>> Error 3 in JTaudio, you will only be able to work offline.
>>
>> Exactly the same error messages appears when i try to run it on Linux
>> mint 17.2
>>
> Try using pulse audio to interface between the USB card and wsjt.
> 
> 
> 

-- 
---
Håken Hveem

--
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] Problems with wsjt and Rigblaster advantage on Ubuntu

2015-08-31 Thread Richard Bown
On Mon, 31 Aug 2015 14:21:04 +0200
Håken Hveem  wrote:

> And how do i interface interface between the USB card and wsjt, with
> pulse audio ?
> 
> 
Select pulse as the interface and the the pulseaudio manager to connect to the 
correct source and
sink.
 Read this and the links
http://www.freedesktop.org/wiki/Software/PulseAudio/Documentation/User/
And try using an up to date version of wsjt , 9.3 is pretty ancient.
Suggest you also subscribe to the pulseaudio list. There are some very 
knowledgeable  people on
that list that can help you with this audio interface problem.

> 
> Den 31. aug. 2015 13:51, skrev Richard Bown:
> > On Mon, 31 Aug 2015 13:36:59 +0200
> > Håken Hveem  wrote:
> > 
> >> Here is the error messages from my attempt to run WSJT from Kamals ppa
> >> on my ubuntu distro:
> >>
> >>
> >> wsjt
> >> **
> >> WSJT Version 9.3 r2792 , by K1JT
> >> Revision date: 2012-12-12 08:12:50 -0800 (Wed, 12 Dec 2012)
> >> Run date: Mon Aug 31 11:17:32 2015 UTC
> >> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
> >> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM 
> >> cards.pcm.center_lfe
> >> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
> >> bt_audio_service_open: connect() failed: Connection refused (111)
> >> bt_audio_service_open: connect() failed: Connection refused (111)
> >> bt_audio_service_open: connect() failed: Connection refused (111)
> >> bt_audio_service_open: connect() failed: Connection refused (111)
> >> Cannot connect to server socket err = No such file or directory
> >> Cannot connect to server request channel
> >> jack server is not running or cannot be started
> >>
> >> Audio Input Output Device Name
> >> Device Channels Channels
> >> --
> >> 0 2 8 HDA Intel PCH: ALC892 Analog (hw:0,0)
> >> 1 0 2 HDA Intel PCH: ALC892 Digital (hw:0,1)
> >> 2 2 0 HDA Intel PCH: ALC892 Alt Analog (hw:0,2)
> >> 3 0 8 HDA NVidia: HDMI 0 (hw:1,3)
> >> 4 0 8 HDA NVidia: HDMI 1 (hw:1,7)
> >> 5 0 8 HDA NVidia: HDMI 2 (hw:1,8)
> >> 6 0 8 HDA NVidia: HDMI 3 (hw:1,9)
> >> 7 1 2 RIGblaster Advantage Audio: USB Audio (hw:2,0)
> >> 8 128 128 sysdefault
> >> 9 0 8 front
> >> 10 0 8 surround40
> >> 11 0 128 surround41
> >> 12 0 128 surround50
> >> 13 0 8 surround51
> >> 14 0 8 surround71
> >> 15 0 2 iec958
> >> 16 0 2 spdif
> >> 17 32 32 pulse
> >> 18 0 2 dmix
> >> 19 32 32 default
> >>
> >> User requested devices: Input = 7 Output = 7
> >> Default devices: Input = 19 Output = 19
> >> Will open devices: Input = 7 Output = 7
> >> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
> >> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM 
> >> cards.pcm.center_lfe
> >> ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
> >> bt_audio_service_open: connect() failed: Connection refused (111)
> >> bt_audio_service_open: connect() failed: Connection refused (111)
> >> bt_audio_service_open: connect() failed: Connection refused (111)
> >> bt_audio_service_open: connect() failed: Connection refused (111)
> >> Cannot connect to server socket err = No such file or directory
> >> Cannot connect to server request channel
> >> jack server is not running or cannot be started
> >> Expression 'parameters->channelCount <= maxChans' failed in
> >> 'src/hostapi/alsa/pa_linux_alsa.c', line: 1514
> >> Expression 'ValidateParameters( inputParameters, hostApi,
> >> StreamDirection_In )' failed in 'src/hostapi/alsa/pa_linux_alsa.c',
> >> line: 1838
> >> device 7 failed a request for two channels, trying with one channel
> >> Error opening input audio stream.
> >> Errortext: Invalid sample rate
> >> Number: -9997
> >> Error opening output audio stream.
> >> Errortext: Invalid sample rate
> >> Number: -9997
> >> Error 3 in JTaudio, you will only be able to work offline.
> >>
> >> Exactly the same error messages appears when i try to run it on Linux
> >> mint 17.2
> >>
> > Try using pulse audio to interface between the USB card and wsjt.
> > 
> > 
> > 
> 



-- 
-- 
Best wishes /73 
Richard Bown

Email : rich...@g8jvm.com
HTTP  :  http://www.g8jvm.com
nil carborundum a illegitemis
##
Ham Call: G8JVM . QRV: 50-432 MHz + Microwave 23 cms 140W, 13 cms 100W & 3cms 5W
Maidenhead QRA: IO82SP38, LAT. 52 39.720' N LONG. 2 28.171 W
QRV VHF 6mtrs 200W, 4 mtrs 150W, 2mtrs 400W, 70cms 200W
OS: Linux Mint 17.1 x86_64 on a Dell Inspiron N5030 laptop
##
 


--
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel