forked from project-chip/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
Merge fork #18
Merged
Merged
Merge fork #18
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
* Modified scripts July 14 TC-ACT-1.1 TC-ALOGIN-1.12 TC-APPLAUNCHER-1.3 TC-AUDIOOUTPUT-1.8 T-BOOL-1.1 TC-CC-1.1 TC-CHANNEL-1.6 TC-CONTENTLAUNCHER-1.11 TC-GSW-2.1 TC-DGSW-2.3 TC-DGSW-3.1 TC-FLW-1.1 TC-I-1.1 TC-ILL-1.1 TC-KEYPADINPUT-1.3 TC-LOWPOWER-1.1 TC-LVL-1.1 TC-LVL-3.1 TC-LVL-4.1 TC-LVL-5.1 TC-LVL-6.1 TC-MEDIAINPUT-1.4 TC-MEDIAPLAYBACK-1.7 TC-MOD-1.1 TC-OCC-1.1 TC-OO-1.1 TC-PRS-1.1 TC-PS-1.1 TC-PSCFG-1.1 TC-RH-1.1 TC-SC-4.2 TC-TGNAVG-1.9 TC-TMP-1.1 TC-TSTAT-1.1 TC-TSTAT-2.2 TC-WAKEONLAN-1.5 TC-WNCV-1.1 * Auto generated files * Restyled by whitespace * Modified PICS value Co-authored-by: Restyled.io <[email protected]>
* Reenable logging for lock-app by converting to Thread MTD * Update CI
* Groups cluster: Check that keys are set before AddGroup. * Groups cluster: Review comments applied.
See https://github.com/marketplace/actions/gradle Signed-off-by: utzcoz <[email protected]>
* Update README and make bundle generic and gating * Format * Format * More semantic naming * Spelling * Spelling * Restyle again
OpenThread functions for joining or leaving multicast groups would be called without holding the Thread stack lock. Signed-off-by: Damian Krolik <[email protected]>
* Set build q time to 6 hr * README * Restyel
…20562) * Validate RCAC Prior to Setting on AddTrustedRootCertificate Command. * Fix typo in comment. Co-authored-by: Boris Zbarsky <[email protected]>
…0786) The nRF Connect window-covering app didn't build correctly after recent changes. The fix is to move using the namespaces into another place in the code. This change needs to be also applied in the SVE branch.
Without this change, we can schedule a reporting run, then do a sync Run (due to urgent events), then (unnecessarily) schedule another reporting run.
…20795) Disabled file info from asserts in release configuration to save around 7k of flash.
* Updated Manual scripts and PICS Condition * Generated code * Third party removal * 1.Disabled test 'Test_TC_APPLAUNCHER_3_7' on darwin. * Updating auto generated files * 1. Updating values of PICs APPLAUNCHER.S.AP in CI * Updating autogenerated files * Updating PICS values for CI Co-authored-by: krypton36 <[email protected]> Co-authored-by: kvikrambhat <[email protected]>
* [#19793] Implement separate feature bits for schedules in the door lock cluster * Update auto-generated files
Spec was wrong and is being fixed in CHIP-Specifications/connectedhomeip-spec#5461
* Log error on bad packets instead of silent return * update message text * fix typo
* Implement updated spec rules related to CATs - CAT identifiers could previously collide, which made their use ambiguous for access conntrol - CAT tag class did not enforce strongly that all CATs are at the front and this is not required for correctness - CAT identifiers could be value 0 before Based on CHIP-Specifications/connectedhomeip-spec#5437 we need to fix this. Fixes #20746 This PR: - Checks CATs are valid when adding/updating NOCs - Adds an `AreValid()` method to CATValues to ensure correctness Testing done: - Added unit tests for all new methods - Cert tests still pass * Apply review comment from @mstandstedt * Fix Darwin tests. * Restyle * Update access control to use CASEAuthTag methods * Rename variables to clarify logic * Fix another use of direct masks Co-authored-by: Boris Zbarsky <[email protected]>
…0561) - Added HEX format support for the DER encoded data. - Added HEX foramt support for the Certification Declaration data. - Added support for only Public Key (without Private Key) including public key in HEX format. - Code refactored.
* Update ZAP metadata in ZCL files. With matter nearing release, the category of the ZCL data needs to be differentiated, so zigbee pro stacks use "zigbee" category and Matter stack uses "matter" category. None of this affects generation, but it affects the user flow in the UI, where user might be upgrading old Matter or old ZigbeePro file, and this meta info helps determine which metafiles are the ones that should be used for the upgrades. It's important that this change makes it into the Matter SDK before it becomes any kind of GA release to the customers, otherwise when zap is upgrading from one to another version of Matter, it will have to do guessing or ask the user for what to do. * When doing ZCL file comparison, ignore differences in description.
* EFR32: Device Attestation Credentials Provider implementation. * EFR32 DAC Provider: Review comments applied.
* [Tizen] Do not create flashbundle for non-TPK apps * For example apps create Tizen security profile on the fly
* [OTA] Implement erase partition in Abort function * [OTA] Increase delay before reboot to 10 seconds - This allows time to send out events, for eg state transition from downloading to applying * Restyled by clang-format Co-authored-by: Restyled.io <[email protected]>
…turned off and a new controller is started (#21412) * Add a test named testControllerWithOTAProviderDelegate to ensure that starting a new controller once all the controllers has been shut down does not fail * Fix OTA delegate bridge init on Darwin
…s. (#21287) * Changed the bridge-app to use temperature sensors rather than switches. The switches in the bridge-app were change to temperature sensors to match the updated bridge test plan. A lock was also added in a few places in the bridge-app to fix errors that reported reported a "Chip stack locking error" * Updates to address comments from code review. * Updated bridge-app common files. * Restyled by clang-format * Renamed variable to avoid build failures. Co-authored-by: Restyled.io <[email protected]>
Currently changes to the arguments used when buildin examples are not reflected in incremental builds. This is a confusing situation when it occurs. Don't skip the generate step as this also sets the configuration.
… previous list for a given endpoint (#21336) * Clean up unused UserLabel after it is not in use * Conduct user label cleanup in the user label cluster
…viderDelegate.mm (Prams -> Params) (#21419)
* [#19807] Add ability to trigger the door lock alarm with Lock Jammed code and change the door state in the lock app * [#19807] Restrict lock operation for disabled users (door lock) * [#19807] Support schedule-restricted users in the lock-app * Address code review feedback: move the lock-app to named pipe * Update auto-generated files
string/blob from NVS
* Added support for MG24+RS9116 * Restyled the PR as per bot * Disabling LCD only for wifi
…k. (#21363) We were requiring a WiFi password in order to provide the WiFi SSID to the underlying SDK. But not all networks have a password.
Right now we are not reporting any details about what error we encountered. We should report those details.
… of them (#21342) * Enable shell commands and add basic support for some of them * Restyle fix * Forgot to add the main file * Minor comment * Restyle fix
* updated nxp hsm pake integration layer * updated key policies * Enabled ecc by default * K32w build fix * restyled Co-authored-by: Jagadish-NXP <[email protected]> Co-authored-by: Jagadish B E <[email protected]>
Fork default Pigweed rpc server implementation and change the behaviour on disconnect from closing and returning, to awaiting a reconnect.
* [#19991] Fix error code for the Set User command * Update auto-generated files
* Add Multicast Homing for Socket Implementation * Fix CI * fix move buffer * remove debug code
* Fix status report in ReadClient * address comments * comments
* [no ci] new zap files * [no ci] run zapfile_formatter.py * [no ci] chef/sample_app_util/sample_app_util.py * Regen all
* [nrfconnect] Use nRF Connect SDK 2.0.2 Use the newest SDK release to include the support for Thread 1.3. Signed-off-by: Damian Krolik <[email protected]> * Bump all docker images in workflows Co-authored-by: Justin Wood <[email protected]>
* Move management of the AdminVendorId and AdminFabricIndex to the commissioning window opener. * Fix the types of the attributes in the XML to be nullable. * Implement the spec provisions about returning null for the fabric index when the fabric gets removed. * Implement the spec provisions about returning "window not open" when it was opened via non-cluster means (e.g. boot time. Fixes #20882
* [mrp] Align ReliableMessageMgr::GetBackoff() naming with spec Make variables and comments in the function more aligned with the current spec version so that it is easier to compare the code with the spec. Signed-off-by: Damian Krolik <[email protected]> * [mrp] Implement MRP_BACKOFF_MARGIN Base interval (active or idle) should be multiplied by MRP_BACKOFF_MARGIN = 1.1 before putting it in the MRP backoff formula. Signed-off-by: Damian Krolik <[email protected]> * [mrp] Increase MRP backoff time for SED sender When sender is sleepy, it may take more time until it receives an acknowledgment from a peer, so MRP backoff time should be extended by the sleepy active interval. Signed-off-by: Damian Krolik <[email protected]>
Remove obsolete OpenThread workaround causing the build failure. Signed-off-by: Damian Krolik <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
android
app
ble
config
controller
core
crypto
darwin
documentation
Improvements or additions to documentation
efr32
esp32
examples
github
gn
inet
integrations
lib
linux
lwip
nrf connect
platform
scripts
setup payload
shell
support
system
telink
test driver
tests
tools
transport
vscode
workflows
zephyr
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.
Problem
What is being fixed? Examples:
Change overview
What's in this PR
Testing
How was this tested? (at least one bullet point required)