Skip to content
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

Show VFO image "A" or "B" instead of "><" (DW on hold image) in DW mode after reception end. #559

Open
laggbits opened this issue May 6, 2024 · 0 comments

Comments

@laggbits
Copy link

laggbits commented May 6, 2024

In double wait mode you can't determine which VFO received transmission if you were not looking at the screen.
Below changes makes status line display "A" or "B" for a couple of seconds instead of "><" sign.
Its not an issue but a small correction )

In "bitmaps.c"
I replaced "><" bitmap by "AB" bitmap. (BITMAP_TDR2[10])
(line: 206)

In "status.c"
I replaced:
memcpy(line + x + 3, BITMAP_TDR2, sizeof(BITMAP_TDR2));
by:
memcpy(line + x + 3, BITMAP_TDR2 + (gEeprom.RX_VFO * 5), 5);
(line: 115)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant