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

feat: add support for EU Long Range #6751

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft

feat: add support for EU Long Range #6751

wants to merge 3 commits into from

Conversation

AlCalzone
Copy link
Member

@AlCalzone AlCalzone commented Apr 10, 2024

Keeping this as draft until there's device support. We'll also have to wait for a Serial API command to detect supported regions or add another SDK version check.

Note: This can be tested now on 800 series devkits using Simplicity Studio and the new Simplicity SDK from Silicon Labs. Unfortunately as of 7.22.0 (SDK 2024.6.0), the Serial API Controller application has a small bug that causes erratic behavior in Z-Wave JS.

As a workaround, create a project instead of running the sample app, choose copy SDK sources during project creation, then modify app.c as follows:

- eSerialAPIStartedCapabilities capabilities = (RadioConfig->eRegion == REGION_US_LR) ? SERIAL_API_STARTED_CAPABILITIES_L0NG_RANGE : 0;
+ eSerialAPIStartedCapabilities capabilities = (RadioConfig->eRegion == REGION_US_LR || RadioConfig->eRegion == REGION_EU_LR) ? SERIAL_API_STARTED_CAPABILITIES_L0NG_RANGE : 0;

Now right-click the project, choose "run as" -> Silicon Labs ARM program. After flashing, the controller is ready.

7.22.1 (SDK 2024.6.1) is supposed to fix this.

@AlCalzone AlCalzone changed the title chore: add EU LR region feat: add support for EU Long Range Jun 12, 2024
@AlCalzone AlCalzone marked this pull request as ready for review June 24, 2024 10:01
@AlCalzone AlCalzone marked this pull request as draft June 24, 2024 10:47
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.

None yet

1 participant