Hi Bill...
I had some time after work and was able to create a log file showing the error
clearly.
jeff, wa1hco
On 08/01/2014 08:11 AM, Bill Somerville wrote:
On 01/08/2014 12:28, jeff millar wrote:
Hi Bill...
Hi Jeff,
Thanks for the ideas. I'm off to vacation for a week and will not have
access to the desktop or radio for that time. I will try your debugging
build next weekend.
OK, enjoy the break, we can pick this up later.
The input level is reported and control with pulse audio volume control or
the pull down audio control on the top bar. I'm watching the slider position
for Input Audio and stepping the code. one more click on "step into" causes
the input level go from about 20% to 100%.
The audio controls do work on my VM so I will see if I can reproduce that
behaviour.
That line of code is emitting a Qt signal and in this case it is crossing a
thread boundary so it is not a simple function call that is going on.
QtCreator may not follow that signal to any connected slots in the target
thread(s), I don't use QtCreator for debugging so I'm not 100% sure on the
mechanics. If I can reproduce it; I will set break points on the target slots
and see if I can track down what is happening here.
If it were the signal emission in the MainWindow constructor; then it is quite
possible that the previous line is the one that is causing the issue you see.
The previous line is emitting another signal which is starting the audio input
stream, again via an inter-thread signal to slot connection. It is quite
possible that the target thread doesn't run and dequeue the message until the
line you cite runs. You can trace this in debug by setting a break point on
SoundInput::start which is the target slot of the
MainWindow::startAudioInputStream signal. Then step through that to see what
line causes the level reset.
This probably boils down to the fact that Qt creates a new stream (and stream
name) for every audio connection and the we have no control of the stream
name. This means that levels set via the system or pavucontrol are not
remembered between runs. You will probably have to set the RX level via the
WSJT-X level slider rather than the system. IIRC the slider in WSJT-X doesn't
change the stream slider, we do our own gain processing on the audio received.
I would think that given two different digital level controls (pulseaudio and
ours) in series; it is probably best to have one or the other at 0dB anyway as
each stage of attenuation is likely to introduce artefacts so only using one
of them is best.
We have raised an issue report to Qt on this but AFAIK no one has picked it up
and submitted a fix. On Windows since 7 the levels are associated with the
executable name that set them. In pulseaudio the levels are associated with
the stream name so not being able to set the stream name is IMHO a Qt defect.
jeff, wa1hco
Hope this helps & 73
Bill
G4WJS.
On 08/01/2014 05:10 AM, Bill Somerville wrote:
On 01/08/2014 04:42, jeff millar wrote:
Hi Jeff,
Sorry you are having some issues with the current WSJT-X code.
First problem: Most of the time, when starting a transmission or using the
Tune button, WSJTX throws a "Rig Control Error Hamlib error: Invalid
parameter while getting current VFO frequency". This occurs about 1 sec
after starting a transmission. But sometimes it runs ok for a while
without throwing errors. The Test CAT button doesn't show a problem. I
can browse the bands with the band select button without seeing the problem.
So I can see what is going on here can you build a version that has CAT
diagnostics enabled. Details of a way to do that are in this posting:
https://sourceforge.net/p/wsjt/mailman/message/32650244/
Once built; run the application to reproduce the issues then close it. The
file wsjtx_trace.log is created in the directory that the binary was in.
Compress and send me that file (directly is probably best) and I'll have a
look at what is going on.
Second problem: Whenever WSJTX starts up it somehow resets the input level
to 100%. I traced this down to this line in mainwindow.cpp
Q_EMIT initializeAudioOutputStream (m_config.audio_output_device (),
AudioDevice::Mono == m_config.audio_output_channel () ? 1 : 2,
m_msAudioOutputBuffered);
any ideas?
That line is the initialisation of the audio output stream, that has to be
done before it can be used. That should only effect TX audio so I am
surprised that it is having any impact on RX audio. Unfortunately I only
have Linux on a VM and the audio drivers for the VM do not support input
audio so I cannot debug this issue here.
When you say "resets input level to 100%" where are you seeing that?
jeff, wa1hco
I'm running WSJTX, r1.4, r4224 on Ubuntu 14.04. Hamlib is V3.0.
IC-746PRO. PTT method by RTS.
Application output from qtcreator...
ig_set_conf: serial_handshake='None'
rig_set_conf: ptt_pathname='/dev/ttyUSB1'
rig_set_conf: ptt_type='RTS'
rig:rig_open called
read_string(): Timed out 0.200237 seconds without reading a character.
read_string(): Timed out 0.200235 seconds without reading a character.
read_string(): Timed out 0.200244 seconds without reading a character.
read_string(): Timed out 0.200218 seconds without reading a character.
rig:rig_close called
rig:rig_close called
rig:rig_cleanup called
QDialog::exec: Recursive call detected
Got a buffer underflow!
Got a buffer underflow!
Got a buffer underflow!
Got a buffer underflow!
The only issue I see with that output is the read_string() time outs which
implies that the CAT module is not getting any response from the rig from a
command sent to it at some point, the diagnostic trace should help with that
too.
73
Bill
G4WJS.
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/main.cpp:115)Debug: "WSJT-X v1.4.0 r4225-dirty by K1JT - Program startup"
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: dummy: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: yaesu: initrigs3_yaesu called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (121)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (127)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (110)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (105)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (106)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (107)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (109)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (120)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (101)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (122)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (123)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (111)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (115)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (113)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (114)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (128)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (131)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (116)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (103)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (124)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (104)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (125)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (129)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (132)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (130)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (117)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (119)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (118)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (126)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (133)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: initrigs3_kenwood called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (213)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (201)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (225)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (203)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (204)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (216)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (224)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (205)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (207)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (209)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (210)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (222)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (214)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (230)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (221)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (229)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (202)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (211)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (206)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (208)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (215)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (226)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (217)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (233)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (220)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (223)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (227)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (234)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (231)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (231)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (228)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (219)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (232)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (236)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: icom: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (355)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (309)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (310)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (311)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (313)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (314)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (315)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (319)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (320)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (321)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (322)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (367)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (323)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (346)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (324)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (328)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (330)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (326)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (327)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (347)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (357)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (363)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (329)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (362)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (345)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (356)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (360)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (370)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (361)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (331)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (312)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (316)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (332)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (334)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (344)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (368)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (335)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (369)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (336)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (358)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (337)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (338)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (339)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (340)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (341)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (342)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (343)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (366)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (303)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (304)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (306)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (307)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (302)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (352)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (353)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (351)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (364)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (365)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (354)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: pcr: init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (402)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (401)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (403)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (404)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: aor: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (516)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (508)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (501)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (502)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (513)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (504)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (506)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (503)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (505)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (514)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (515)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: jrc: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (606)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (607)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (605)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: uniden: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (803)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (812)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (802)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (801)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (806)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (804)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (810)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (811)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: drake: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (902)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (903)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: lowe: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1004)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: racal: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1103)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1105)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: wj: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1204)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: skanti: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1402)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1404)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: winradio: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1501)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1502)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1503)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1504)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1505)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1506)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1507)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1509)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: tentec: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1601)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1607)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1608)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1602)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1609)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1611)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1613)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1603)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1612)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1604)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1605)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: alinco: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1701)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: kachina: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (1801)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: tapr: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2201)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: initrigs3_flexradio called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2301)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2303)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2304)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rft: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2401)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: kit: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2501)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2502)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2506)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2508)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2514)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: tuner: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2601)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2602)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rs: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2701)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2702)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: prm80: _init called
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2801)
Sat Aug 2 03:37:56 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_register (2901)
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/Configuration.cpp:456)Debug: Configuration::transceiver_online: open_if_closed: true Transceiver::TransceiverState(online: no Frequency {0Hz, 0Hz} UNK; SPLIT: unknown; PTT: off)
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig:rig_init called
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_set_conf: rig_pathname='/dev/FT232serial'
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_set_conf: serial_speed='19200'
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_set_conf: data_bits='8'
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_set_conf: stop_bits='2'
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_set_conf: serial_handshake='None'
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_set_conf: ptt_pathname='/dev/RIGblasterPnP'
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_set_conf: ptt_type='RTS'
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig_set_conf: no_xchg='1'
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:262)Debug: HamlibTransceiver::do_start rig: "Icom IC-746PRO"
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: rig:rig_open called
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: write_block(): TX 6 bytes
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 03 fd ..f...
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 6 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 03 fd ..f...
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 11 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe e0 66 03 00 60 07 14 00 fd ...f..`....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:302)Debug: HamlibTransceiver::init_rig rig_get_freq = 1.4076e+07
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: write_block(): TX 6 bytes
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 04 fd ..f...
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 6 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 04 fd ..f...
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 8 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe e0 66 04 01 01 fd ...f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: write_block(): TX 7 bytes
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 1a 03 fd ..f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 7 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 1a 03 fd ..f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 8 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe e0 66 1a 03 34 fd ...f..4.
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: write_block(): TX 7 bytes
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 1a 06 fd ..f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 7 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 1a 06 fd ..f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 8 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe e0 66 1a 06 00 fd ...f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:308)Debug: HamlibTransceiver::init_rig rig_get_mode = 4 bw = 3000
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:331)Debug: HamlibTransceiver::init_rig rig_set_vfo
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: write_block(): TX 7 bytes
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 07 01 fd ..f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 7 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 07 01 fd ..f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 6 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe e0 66 fb fd ...f..
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: write_block(): TX 6 bytes
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 03 fd ..f...
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 6 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 03 fd ..f...
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 11 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe e0 66 03 00 50 06 14 00 fd ...f..P....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:340)Debug: HamlibTransceiver::init_rig rig_get_freq = 1.4065e+07
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: write_block(): TX 6 bytes
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 04 fd ..f...
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 6 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 04 fd ..f...
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 8 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe e0 66 04 01 01 fd ...f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: write_block(): TX 7 bytes
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 1a 03 fd ..f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 7 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 1a 03 fd ..f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 8 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe e0 66 1a 03 34 fd ...f..4.
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: write_block(): TX 7 bytes
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 1a 06 fd ..f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 7 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 1a 06 fd ..f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 8 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe e0 66 1a 06 00 fd ...f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:346)Debug: HamlibTransceiver::init_rig rig_get_mode = 4 bw = 3000
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:363)Debug: HamlibTransceiver::init_rig rig_set_vfo
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: write_block(): TX 7 bytes
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 07 00 fd ..f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 7 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 07 00 fd ..f....
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 6 characters
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe e0 66 fb fd ...f..
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:391)Debug: HamlibTransceiver::init_rig rig_set_split_vfo
Sat Aug 2 03:37:57 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:423)Debug: HamlibTransceiver::init_rig exit Transceiver::TransceiverState(online: no Frequency {14076000Hz, 14065000Hz} USB; SPLIT: unknown; PTT: off) reversed = false
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/Configuration.cpp:502)Debug: Configuration::transceiver_ptt: true Transceiver::TransceiverState(online: no Frequency {0Hz, 0Hz} UNK; SPLIT: unknown; PTT: off)
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:557)Debug: HamlibTransceiver::do_mode: USB rationalise: false
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:447)Debug: HamlibTransceiver::get_vfos rig_set_vfo
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: write_block(): TX 7 bytes
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 07 00 fd ..f....
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 7 characters
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 07 00 fd ..f....
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 6 characters
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe e0 66 fb fd ...f..
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:466)Debug: HamlibTransceiver::get_vfos RX VFO = 0x1 TX VFO = 0x1
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:570)Debug: HamlibTransceiver::mode rig_get_mode
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: write_block(): TX 6 bytes
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 04 fd ..f...
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 6 characters
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 04 fd ..f...
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 8 characters
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe e0 66 04 01 01 fd ...f....
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: write_block(): TX 7 bytes
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 1a 03 fd ..f....
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 7 characters
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 1a 03 fd ..f....
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 8 characters
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe e0 66 1a 03 34 fd ...f..4.
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: write_block(): TX 7 bytes
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 1a 06 fd ..f....
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 7 characters
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe 66 e0 1a 06 fd ..f....
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: read_string(): RX 8 characters
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:48)Debug: 0000 fe fe e0 66 1a 06 00 fd ...f....
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:736)Debug: HamlibTransceiver::do_ptt: true Transceiver::TransceiverState(online: yes Frequency {14076000Hz, 14065000Hz} USB; SPLIT: unknown; PTT: off) reversed = false
Sat Aug 2 03:38:00 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:744)Debug: HamlibTransceiver::ptt rig_set_ptt
Sat Aug 2 03:38:02 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:279)Debug: HamlibTransceiver::do_stop: state: Transceiver::TransceiverState(online: no Frequency {14076000Hz, 14065000Hz} USB; SPLIT: unknown; PTT: on) reversed = false
Sat Aug 2 03:38:02 2014 GMT(/home/jeff/src/wsjtx/Configuration.cpp:1971)Debug: Configuration::handle_transceiver_failure: reason: "Hamlib error: Communication bus error while getting current VFO frequency
"
Sat Aug 2 03:38:02 2014 GMT(/home/jeff/src/wsjtx/HamlibTransceiver.cpp:279)Debug: HamlibTransceiver::do_stop: state: Transceiver::TransceiverState(online: no Frequency {14076000Hz, 14065000Hz} USB; SPLIT: unknown; PTT: on) reversed = false
Sat Aug 2 03:38:02 2014 GMT(/home/jeff/src/wsjtx/Configuration.cpp:1971)Debug: Configuration::handle_transceiver_failure: reason: "Hamlib error: Invalid parameter while getting current VFO frequency
"
Sat Aug 2 03:38:02 2014 GMT(dialogs/qdialog.cpp:528)Warning: QDialog::exec: Recursive call detected
Sat Aug 2 03:38:02 2014 GMT(/home/jeff/src/wsjtx/Configuration.cpp:502)Debug: Configuration::transceiver_ptt: true Transceiver::TransceiverState(online: no Frequency {0Hz, 0Hz} USB; SPLIT: unknown; PTT: on)
Sat Aug 2 03:38:02 2014 GMT(/home/jeff/src/wsjtx/Configuration.cpp:502)Debug: Configuration::transceiver_ptt: false Transceiver::TransceiverState(online: no Frequency {0Hz, 0Hz} USB; SPLIT: unknown; PTT: on)
Sat Aug 2 03:38:03 2014 GMT(/home/jeff/src/wsjtx/Configuration.cpp:465)Debug: Configuration::transceiver_offline: Transceiver::TransceiverState(online: no Frequency {0Hz, 0Hz} USB; SPLIT: unknown; PTT: off)
------------------------------------------------------------------------------
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls.
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
_______________________________________________
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel