-
Notifications
You must be signed in to change notification settings - Fork 67
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
Conversation
@@ -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 |
There was a problem hiding this comment.
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.
|
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. |
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. |
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. |
Hi @VanceVagell, 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 |
This. change increases upper limit of the UHF band to the 480Mhz.