forked from nrfconnect/sdk-connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Bump third_party/pigweed/repo from 9ac358b
to baf04ad
#55
Open
dependabot
wants to merge
65
commits into
master
Choose a base branch
from
dependabot/submodules/third_party/pigweed/repo-baf04ad
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Bump third_party/pigweed/repo from 9ac358b
to baf04ad
#55
dependabot
wants to merge
65
commits into
master
from
dependabot/submodules/third_party/pigweed/repo-baf04ad
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add Zephyr module manifest in the CHIP root directory in order to automatically pull CHIP into a project when CHIP is one of the submodules specified in west manifest. CHIP module takes all compilatinon flags associated with the zephyr_interface target and passes them to the external GN-based project. For that reason we must ensure that the Matter module is processed after other revelant modules that modify the zephyr_interface target. nrfxlib is such a module as it contains nrf_security which carries the mbedtls configuration. Signed-off-by: Damian Krolik <[email protected]>
Add a manually triggered workflow for building Android CHIPTool packages for arm and arm64 architectures, and CHIP Tool for Linux x64 and arm64. The packages are uploaded both as github artifacts and release packages (as the latter require a release tag). The doxygen workflow pushes doxygen HTML files to another branch which is undesired on the sdk-connectedhomeip fork as it causes significant growth of the repository size. Signed-off-by: Damian Krolik <[email protected]> Signed-off-by: Kamil Kasperczyk <[email protected]>
Set for CI build NCS recommended version to origin/main
Recently the Zephyr include path was changed from ${ZEPHYR_BASE}/include/posix/ to ${ZEPHYR_BASE}/include/zephyr/posix. We need to align this in Matter SDK to avoid build errors.
…print. OnboardingCodesUtil uses SetupPayload object that contains a lot unnecessary data and takes a lot of flash. Replaced using SetupPayload with PayloadContents and QRCodeSetupPayloadGenerator with QRCodeBasicSetupPayloadGenerator. It allowed to save about 3.28 k of flash for nrfconnect platform. (cherry picked from commit 4175f409594d593683e3f13829988336b037b3cb)
I applied a code review comment only partially and forgot to remove the multiplication. (cherry picked from commit f45e998b9d9c719107f6fb3bf4a02eb5f3aa18c4)
-Fix hash size issue (grew from 240 to 244 bytes) -Changing default to disable PSA Crypto driver for nrf_cc3xx as it is not in use yet -Removed CC3XX_BACKEND configuration from defaults ref: NCSDK-13857 Signed-off-by: Frank Audun Kvamtrø <[email protected]>
Fixed bug observed on nRF53 SED that ends with assert due to not initialized QSPI during OTA Requestor init.
…roperly Output buffer span is not reduced properly, as subspan is passed to the base38Encode method and changed size doesn't propagate to the outBuffer. Added reducing outBuffer size to the subSpan + prefixLen size.
* [opcreds] Fix LEAVE event on RemoveFabric LEAVE event is not emitted on RemoveFabric or factory reset. There are two reasons for that: - Removing a fabric causes closing all active ReadHandlers for a given fabric, so we must flush the event log before that happens. - There are two listeners for removing a fabric; the one that removes ACLs for a given fabric index is executed prior to the other one that generates LEAVE event. That causes "Accces control: denied" error. Fix both issues. * Add comment (cherry picked from commit d016401)
1. Increase the default sleep time between emitting the shutdown event and rebooting the device to apply a new image. That is to increase chances of delivering the event to subscribers. 2. Do not auto-confirm a new image using the DFUoverSMP module when OTA Requestor is enabled. In such a case, it is the OTA Requestor's job to confirm the image and notify OTA Provider that it has just happened. 3. Limit UPGRADE_ONLY mode to nRF53 (it was mistakenly enabled for all Nordic boards). 4. Change OTAImageProcessorImpl::IsFirstImageRun impl to make it work even if UPGRADE_ONLY mode is enabled. Signed-off-by: Damian Krolik <[email protected]> (cherry picked from commit 645acff4063b3c79c7af8eb1cae040b3c786c6ed)
Signed-off-by: Damian Krolik <[email protected]>
Use DFU Multi Image package and library to allow for multi-image updates. Skip OTA requestor initialization if already initialized. Signed-off-by: Damian Krolik <[email protected]>
…ter attributes (#18752) * [nrfconnect] Fixed window covering bug in updating cluster attributes Nrfconnect window covering example doesn't update window covering cluster attributes properly. * Moved PostAttributeChange method from window-covering-server.cpp to header. * Called PostAttributeChange method in nrfconnect implementation of MatterWindowCoveringClusterServerAttributeChangedCallback * Changed mode default value from 0x14 to 0. * [nrfconnect] window-app: do not block in chip attribute changed callback. Signed-off-by: Marcin Kajor <[email protected]> Co-authored-by: Marcin Kajor <[email protected]> (cherry picked from commit a3fdd05)
Commands for opening the commissioning window used too low duration. Change the duration to 180s. Signed-off-by: Damian Krolik <[email protected]>
NVS cache should speed up reading settings on the device boot. Signed-off-by: Damian Krolik <[email protected]>
UPDATEABLE_IMAGE_NUMBER was set to 2 for nRF53 SOCs only if DFU over SMP was enabled. We need that for a regular Matter OTA, too. Signed-off-by: Damian Krolik <[email protected]>
Some buttons were not visible on low-resolution devices. Signed-off-by: Damian Krolik <[email protected]>
Cluster Interaction Tool screen would crash when trying to send a command that takes an optional argument. The reason was that optional arguments were incorrectly converted in the application and the underlying JNI layer. Signed-off-by: Damian Krolik <[email protected]>
Build OTA Provider for Linux in release_tools workflow. Also, disable debug symbols for chip-tool binaries. Signed-off-by: Damian Krolik <[email protected]>
In sdk-connectedhomeip we run CI job against the current nRF Connect main, but sometimes it may lack Python modules introduced in newer nRF Connect revisions. Signed-off-by: Damian Krolik <[email protected]>
Building with nRF Connect SDK 2.0 requires cbor2 Python module. Signed-off-by: Damian Krolik <[email protected]>
(cherry picked from commit 47a51ce)
Make building nRF Connect examples optional in github workflows in a sense that they do not fail the workflow if they do not compile. The reason is that the CI is often run for downstream patches, that are required to proceed with changes in NCS or Zephyr and we do not want to force developers to update examples in sdk-connectedhomeip at that moment - they will be updated in the upstream later. Signed-off-by: Damian Krolik <[email protected]>
…er::Init() (#19749) Initialize CASESessionManager's mrpLocalConfig in Server::Init() (cherry picked from commit 98a1c6b)
The nrf noup commit from sdk-zephyr will be removed, so it was decided to set this value in the Matter samples configuration.
…fd9` to `f4c2233` (#19961) (cherry picked from commit 72b3f53)
…#19981) This commit enables "auto host address mode" in SRP client. When enabled, host IPv6 addresses are automatically set by SRP client using all the unicast addresses on Thread netif excluding the link-local and mesh-local addresses. If there is no valid address, then Mesh Local EID address is added. The SRP client will automatically re-register when/if addresses on Thread netif are updated (e.g., new addresses are added or existing addresses are removed). (cherry picked from commit 46b15d6)
…s mode (#19981)" This reverts commit 0ad8f70.
This reverts commit 2f793b2.
This reverts commit cdee751.
This reverts commit cf449fd.
…ing cluster attributes (#18752)" This reverts commit fc6a52c.
This reverts commit 55b65c0.
This reverts commit d492ce7.
…434)" This reverts commit 5547a6e.
…n size properly" This reverts commit 034992b.
This reverts commit a79fe42.
…eron" This reverts commit 4f5cc99.
This reverts commit ad3feac.
This reverts commit 3662b72.
…ory footprint." This reverts commit 7dfcc48.
This reverts commit f928e05.
This reverts commit f6dcf1c.
This reverts commit 7a4b10c.
This reverts commit 90a41a6.
This reverts commit 20a01c6.
This reverts commit 0bd444b.
Regular upmerge on August 1st.
Add a manually triggered workflow for building Android CHIPTool packages for arm and arm64 architectures, and CHIP Tool for Linux x64 and arm64. The packages are uploaded both as github artifacts and release packages (as the latter require a release tag). The doxygen workflow pushes doxygen HTML files to another branch which is undesired on the sdk-connectedhomeip fork as it causes significant growth of the repository size. Signed-off-by: Damian Krolik <[email protected]> Signed-off-by: Kamil Kasperczyk <[email protected]>
Set for CI build NCS recommended version to origin/main
Build OTA Provider for Linux in release_tools workflow. Also, disable debug symbols for chip-tool binaries. Signed-off-by: Damian Krolik <[email protected]>
Make building nRF Connect examples optional in github workflows in a sense that they do not fail the workflow if they do not compile. The reason is that the CI is often run for downstream patches, that are required to proceed with changes in NCS or Zephyr and we do not want to force developers to update examples in sdk-connectedhomeip at that moment - they will be updated in the upstream later. Signed-off-by: Damian Krolik <[email protected]>
The nrf noup commit from sdk-zephyr will be removed, so it was decided to set this value in the Matter samples configuration.
Bumps [third_party/pigweed/repo](https://github.com/google/pigweed) from `9ac358b` to `baf04ad`. - [Release notes](https://github.com/google/pigweed/releases) - [Commits](google/pigweed@9ac358b...baf04ad) --- updated-dependencies: - dependency-name: third_party/pigweed/repo dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps third_party/pigweed/repo from
9ac358b
tobaf04ad
.Commits
baf04ad
roll: host_toolsbacd5b8
roll: qemu0ec6e00
roll: cmake962a0df
build: Fix compilation warnings for GCC 129d2776b
pw_perf_test: Remove invalid constexpr specifier0c5533f
pw_bluetooth: Add Emboss command packet definitions92cc78c
Revert "pw_cli: Kill child processes of timed-outrun
"06ba62b
pw_cli: Kill child processes of timed-outrun
1b40678
python: Upgrade mypy to 1.0.14129535
python: Upgrade pylintDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)