-
Notifications
You must be signed in to change notification settings - Fork 30
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
[radio] fix connectivity issues caused by an accidental deletion in radio.c
#776
Conversation
This deletion caused connectivity problems, preventing networks from being formed properly.
…GET` containing no RCP targets When running `OT_CMAKE_NINJA_TARGET="ot-cli-ftd" script/build brdXXXXy`, the build script errors with `rcp_targets` being an unbound variable. ```shell + rcp_targets=() + soc_targets=() + for t in '"${OT_CMAKE_NINJA_TARGET[@]}"' + [[ ot-cli-ftd =~ .*rcp.* ]] + soc_targets+=("$t") script/build: line 282: rcp_targets[@]: unbound variable ``` This commit fixes the problem by using a default empty string when `rcp_targets` is empty.
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.
LGTM
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.
LGTM 👍
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.
LGTM
@jwhui please review this when you get a chance. Thanks! |
This deletion should not have happened in
[sdk] update to GSDK 4.4.0
#756It caused issues with transmitting secure packets and prevented devices from joining networks.
This PR also includes a diff that was missed in #756 and a minor script fix