-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On a K4, when a preprogrammed message contains > (RIT clear), program crashes #585
Comments
i wonder: procedure TK4Radio.XITClear(whichVFO: TVFO); |
Oops. That looks like a copy and paste error. I will fix that too.
I emailed to ask.
Tom
Principal Solutions Architect
Better Software Solutions, Inc.
727-437-2771
… On Mar 4, 2022, at 2:10 PM, Howie Hoyt ***@***.***> wrote:
i wonder:
a) whether he meant on k4
b) whether also applies to xit clear:
procedure TK4Radio.RITClear(whichVFO: TVFO);
begin
Self.SendToRadio(whichVFO,'RC','');
end;
procedure TK4Radio.XITClear(whichVFO: TVFO);
begin
Self.SendToRadio(whichVFO,'RC','');
end;
—
Reply to this email directly, view it on GitHub <#585 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AC6TWSVKTVXM2RI636XIXEDU6JN3DANCNFSM5P6KTTXQ>.
You are receiving this because you were assigned.
|
My mistake. According to the book, RC; clears both RIT and XIT. No way to clear just one. |
testing on K3, seems to work FB. |
I tested with the clear command but not with the programmed message. It might not be calling same function. I’ll figure it out tonight.
Tom
Principal Solutions Architect
Better Software Solutions, Inc.
727-437-2771
… On Mar 4, 2022, at 2:15 PM, Howie Hoyt ***@***.***> wrote:
testing on K3, seems to work FB.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were assigned.
|
The code in RITClear received an Abstract run time exception. The code was calling the TNetRadio object incorrectly (earlier implementation model). |
Reopening as the send CW is very choppy when sending to the network |
A common theme was to short-circuit the specific function routine like SendCW to just send the message to the Networked radio. SendCW had important code that needed to be run even in the network case. So I added network code to AddToOutputBuffer. This fixed the CW. Closes #585
No description provided.
The text was updated successfully, but these errors were encountered: