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

480mhz UHF frequency limit #193

Closed
wants to merge 9 commits into from
Closed

Conversation

dkaukov
Copy link
Collaborator

@dkaukov dkaukov commented Jan 26, 2025

This. change increases upper limit of the UHF band to the 480Mhz.

@dkaukov dkaukov requested a review from VanceVagell January 26, 2025 03:47
@@ -21,5 +21,5 @@ build_flags =
-DARDUINO_EVENT_RUNNING_CORE=0
lib_deps =
; fatpat/DRA818@^1.0.1
https://github.com/fatpat/arduino-dra818.git#v1.0.1 ; v1.0.1 is the latest release, but has not been pushed to registry. Update later
https://github.com/fatpat/arduino-dra818.git
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to upgrade to the latest.

@VanceVagell
Copy link
Owner

VanceVagell commented Jan 26, 2025

No country allows 70cm amateur radio transmissions above 450MHz. The values in the drop-down currently let people select options that are compliant for where they live. If someone has an unusual reason to increase or change these, they are welcome to fork the project.

@dkaukov
Copy link
Collaborator Author

dkaukov commented Jan 26, 2025

Hi @VanceVagell

Thanks for the feedback. I understand that transmissions above 450 MHz aren't allowed for amateur radio, and the dropdown is designed to ensure compliance. However, some users might have valid reasons to use frequencies up to 480 MHz, such as experimental licenses or non-amateur applications.

Also, why limit RX? Receiving signals above 470 MHz doesn’t break any rules and could be useful for monitoring or experimenting.

@VanceVagell
Copy link
Owner

I see now that SA818-U can rx at 480MHz, so I've increased the rx max value in the app.

I had been looking at the DRA818-U datasheet, which stops at 470MHz.

@dkaukov
Copy link
Collaborator Author

dkaukov commented Jan 27, 2025

Hi @VanceVagell,
Thanks for updating the RX max value! That’s a good start, but it’s not the whole picture. We also need to tweak the firmware to handle the module properly:

if (paramsStr.charAt(0) == 'v') {
    dra = new DRA818(&Serial2, SA818_VHF);
} else if (paramsStr.charAt(0) == 'u') {
    dra = new DRA818(&Serial2, SA818_UHF);
}

To make that work, we’ll need to upgrade to the latest version of the arduino-dra818 library. That’ll bring everything in line with the new changes and make sure the hardware is fully supported.

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

Successfully merging this pull request may close these issues.

2 participants