-
Notifications
You must be signed in to change notification settings - Fork 32
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
Add CQ WW 160 #386
Add CQ WW 160 #386
Conversation
LGTM I don't recall if there is a need for separate rules for US/VE versus DXCC entries. It has been a few years since I operated in that 'test and I probably won't in the foreseeable future for various reasons. |
Thanks, Nate. The purpose of prefixing is purely technical, e.g. to be able separate Ohio from Finland. |
Thanks for sorting that out. |
If there are no more comments then I'd merge this in. |
Looks good. Go ahead. |
Aiming to resolve #235.
First aligned the naming of
spot.band
with it actual use: it stores a band index (0,1,...), not a band (160,80,...). This was marked earlier inqso_from_spot()
, where a temporary QSO is created for checking it for a new mult. Nowqso->band
contains the human readable band value (160,...).Naming of
freq2band()
inbands.c
was also fixed. (Sometime band index is referred to as band number, not easy to follow)Next added setting of
band
value for a newly entered QSO. It is correctly filled in when reading the log, but was left out for new ones. Setting it ingetexchange
is just a stopgap measure: we shall in fact drop the globalbandinx
and use the one fromcurrent_qso
instead.