-
Notifications
You must be signed in to change notification settings - Fork 223
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
Command Mode: Add Callsign Practice #19
Comments
Hi Josiah. If you haven't attempted to code this yet, I will attempt, hopefully this evening. |
Neat, I haven't touched it yet and probably wouldn't think of it this week. Thanks! |
I was about to implement this, however I just realized/remembered that the callsign practice requires the CLI. You use it to type in the callsigns you hear. |
Sorry, didn't mean to close. Let me know if you want to close or pursue an alternate callsign practice that doesn't need the CLI. |
Oh, cool! Could that be made optional? On 4:45PM, Mon, Feb 8, 2016 Anthony Good [email protected] wrote:
|
It could, but it would require some sort of alternate way for the user to input the callsign they hear. Perhaps send in CW the same callsign back? (Could be done, but a good bit of work I think.) |
Could it simply be put on the screen requiring manual verification? The On 6:26PM, Mon, Feb 8, 2016 Anthony Good [email protected] wrote:
|
Based on what you did with the Echo mode, this would be perfect to: I saw the commented out code in the command_progressive_5_char_echo_practice() which is where I thought this was going (then I realized it was copied from the CLI method). I finally finished my keyer today, the enclosure arrived this afternoon while we were out (longest project ever waiting on parts). I might work on this locally and pull some of the extensive CLI CW Training stuff into the Command Mode interface. |
Anthony, after I got the WINKEY Interface feature working (all I did was uncomment it and clean up an #ifdef) I am able to use my k3ng keyer with Iambic Master (https://sites.google.com/site/korkowp1/iambic-master) which is going to suit me for sending practice. I might toy around with this Callsign send practice in the background as it would work in stand alone mode (vs needing to be hooked up to a Windows PC for Iambic Master). |
Hi Glen. Thanks for the note. You mentioned you had to clean up an
#ifdef? Did you have to make a modification to get the Arduino code to
work with Iambic Master?
73
Goody
K3NG
…On Tue, Jan 30, 2018 at 1:10 PM, Glen ***@***.***> wrote:
Anthony, after I got the WINKEY Interface feature working (all I did was
uncomment it and clean up an #ifdef) I am able to use my k3ng keyer with
Iambic Master (https://sites.google.com/site/korkowp1/iambic-master)
which is going to suit me for sending practice. I might toy around with
this Callsign send practice in the background as it would work in stand
alone mode (vs needing to be hooked up to a Windows PC for Iambic Master).
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#19 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ADLacK85ByF36dMdzrE8UMSoi3O_XD7tks5tP1rwgaJpZM4HRJmL>
.
|
The compiler complained about the “defined” keyword/macro that was uncovered by defining the FEATURE_WINKEY. That was it.
-=Glen=-
… On Feb 1, 2018, at 9:13 PM, Anthony Good ***@***.***> wrote:
Hi Glen. Thanks for the note. You mentioned you had to clean up an
#ifdef? Did you have to make a modification to get the Arduino code to
work with Iambic Master?
73
Goody
K3NG
On Tue, Jan 30, 2018 at 1:10 PM, Glen ***@***.***> wrote:
> Anthony, after I got the WINKEY Interface feature working (all I did was
> uncomment it and clean up an #ifdef) I am able to use my k3ng keyer with
> Iambic Master (https://sites.google.com/site/korkowp1/iambic-master)
> which is going to suit me for sending practice. I might toy around with
> this Callsign send practice in the background as it would work in stand
> alone mode (vs needing to be hooked up to a Windows PC for Iambic Master).
>
> —
> You are receiving this because you modified the open/close state.
> Reply to this email directly, view it on GitHub
> <#19 (comment)>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/ADLacK85ByF36dMdzrE8UMSoi3O_XD7tks5tP1rwgaJpZM4HRJmL>
> .
>
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or mute the thread.
|
What change did you make?
…On Thu, Feb 1, 2018 at 9:30 PM, Glen ***@***.***> wrote:
The compiler complained about the “defined” keyword/macro that was
uncovered by defining the FEATURE_WINKEY. That was it.
-=Glen=-
> On Feb 1, 2018, at 9:13 PM, Anthony Good ***@***.***>
wrote:
>
> Hi Glen. Thanks for the note. You mentioned you had to clean up an
> #ifdef? Did you have to make a modification to get the Arduino code to
> work with Iambic Master?
>
> 73
> Goody
> K3NG
>
> On Tue, Jan 30, 2018 at 1:10 PM, Glen ***@***.***> wrote:
>
> > Anthony, after I got the WINKEY Interface feature working (all I did
was
> > uncomment it and clean up an #ifdef) I am able to use my k3ng keyer
with
> > Iambic Master (https://sites.google.com/site/korkowp1/iambic-master)
> > which is going to suit me for sending practice. I might toy around with
> > this Callsign send practice in the background as it would work in stand
> > alone mode (vs needing to be hooked up to a Windows PC for Iambic
Master).
> >
> > —
> > You are receiving this because you modified the open/close state.
> > Reply to this email directly, view it on GitHub
> > <#19#
issuecomment-361682772>,
> > or mute the thread
> > <https://github.com/notifications/unsubscribe-auth/
ADLacK85ByF36dMdzrE8UMSoi3O_XD7tks5tP1rwgaJpZM4HRJmL>
> > .
> >
> —
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub, or mute the thread.
>
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#19 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ADLacMJdlA17EUd6lGbCYWJpVNw4owrHks5tQnNSgaJpZM4HRJmL>
.
|
Anthony,
Sorry it took so long, I finally sat back down on my MBP.
It was a simple misplaced #ifdef and defined(), can’t have both:
@@ -9491,7 +9492,8 @@ void service_winkey(byte action) {
#ifdef DEBUG_WINKEY
debug_serial_port->println("service_winkey: WINKEY_ADMIN_COMMAND 0x01");
#endif //DEBUG_WINKEY
- #ifdef defined(__AVR__) //#ifndef ARDUINO_SAM_DUE
+ // 30 Jan 2018 GAS Fix
+ #if defined(__AVR__) //#ifndef ARDUINO_SAM_DUE
asm volatile ("jmp 0"); /*wdt_enable(WDTO_30MS); while(1) {};*/
#else
setup();
… On Feb 1, 2018, at 9:32 PM, Anthony Good ***@***.***> wrote:
What change did you make?
On Thu, Feb 1, 2018 at 9:30 PM, Glen ***@***.***> wrote:
> The compiler complained about the “defined” keyword/macro that was
> uncovered by defining the FEATURE_WINKEY. That was it.
>
>
>
>
> -=Glen=-
>
> > On Feb 1, 2018, at 9:13 PM, Anthony Good ***@***.***>
> wrote:
> >
> > Hi Glen. Thanks for the note. You mentioned you had to clean up an
> > #ifdef? Did you have to make a modification to get the Arduino code to
> > work with Iambic Master?
> >
> > 73
> > Goody
> > K3NG
> >
> > On Tue, Jan 30, 2018 at 1:10 PM, Glen ***@***.***> wrote:
> >
> > > Anthony, after I got the WINKEY Interface feature working (all I did
> was
> > > uncomment it and clean up an #ifdef) I am able to use my k3ng keyer
> with
> > > Iambic Master (https://sites.google.com/site/korkowp1/iambic-master)
> > > which is going to suit me for sending practice. I might toy around with
> > > this Callsign send practice in the background as it would work in stand
> > > alone mode (vs needing to be hooked up to a Windows PC for Iambic
> Master).
> > >
> > > —
> > > You are receiving this because you modified the open/close state.
> > > Reply to this email directly, view it on GitHub
> > > <#19#
> issuecomment-361682772>,
> > > or mute the thread
> > > <https://github.com/notifications/unsubscribe-auth/
> ADLacK85ByF36dMdzrE8UMSoi3O_XD7tks5tP1rwgaJpZM4HRJmL>
> > > .
> > >
> > —
> > You are receiving this because you commented.
>
> > Reply to this email directly, view it on GitHub, or mute the thread.
> >
>
> —
> You are receiving this because you modified the open/close state.
> Reply to this email directly, view it on GitHub
> <#19 (comment)>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/ADLacMJdlA17EUd6lGbCYWJpVNw4owrHks5tQnNSgaJpZM4HRJmL>
> .
>
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub <#19 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AEpQfMuD0we_tl0f0SUTjOskv2oJdmx_ks5tQnOqgaJpZM4HRJmL>.
|
Typo fix: ifdef defined(__AVR__) (Thanks, Glen #19)
Thanks. Fixed in version 2018.02.05.01. 73 Goody |
Oh good, I was actually going to branch again to put in the fix and issue a pull request (I’ve never really used git before, I’m coming around from cvs/rcs/svn). My clone is currently full of CW Command line send code that you don’t want.
-=Glen=-
… On Feb 5, 2018, at 8:12 PM, Anthony Good ***@***.***> wrote:
Thanks. Fixed in version 2018.02.05.01. 73 Goody
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Feature Request: Add the ability to start callsign practice mode from command mode. I propose using C as the command to trigger it.
I'll take a whack at this at some point unless someone beats me to it which is cool.
If I understand what I've read correctly, currently the only way to start up call sign practice mode is to have the CLI feature turned on to trigger it. It seems like it would be useful to be able to trigger this from command mode; especially for those using the smaller arduinos since CLI takes up a lot of program space.
I believe this needs to be implemented in the command_mode() function in k3ng_keyer.ino around line 4731. I'm looking at implementing basically a copy of this when I have a bit more time to look at it and figure out how the case statements work.
I think the function to call is us_callsign_practice(), but I have a good bit of research before being sure how this should work.
The text was updated successfully, but these errors were encountered: