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

Sync csa branch with main #293

Merged
merged 33 commits into from
Feb 21, 2025
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
2bf7270
Do not pass cluster ID to CommissionerControlServer (#37644)
yufengwangca Feb 19, 2025
00c6f4e
Add ICDConfigurationData to app sources when ICD management server cl…
adigie Feb 19, 2025
86e0b85
Adding MRP analytics delegate (#37439)
tehampson Feb 19, 2025
38cc24b
Build time optimization (#37433)
adigie Feb 19, 2025
1bd8e40
[Darwin] MTRDevice _delegateExists cannot be called without holding l…
jtung-apple Feb 19, 2025
0551d0a
[Darwin] MTRDeviceController_XPC _updateRegistrationInfo double lock …
jtung-apple Feb 19, 2025
0b67ce2
Dft xpc2 (#36719)
vivien-apple Feb 19, 2025
8464e5f
Add OTA Requestor cluster to energy management app (#37614)
jadhavrohit924 Feb 19, 2025
40979b4
[Darwin] MTRDevice delegate callbacks should call out without holding…
jtung-apple Feb 19, 2025
78092a6
tv-casting-app/android: Include MatterEndpoint.java in TvCastingApp.j…
sharadb-amazon Feb 19, 2025
35fda6d
Update Darwin availability annotations. (#37670)
bzbarsky-apple Feb 19, 2025
489a8d7
New chef devices - Rainsensor waterfreezedetector (#37529)
sxb427 Feb 19, 2025
3f29ee1
[Darwin] MTRDeviceController dealloc log (#37588)
jtung-apple Feb 19, 2025
3939703
[Telink] Fix Thermostat App build (#37674)
adigie Feb 20, 2025
e1ca08f
Correct temperature range for dishwasher (#37647)
sxb427 Feb 20, 2025
d11e93b
[Darwin] MTRDevice subscription onDone callback needs to acquire lock…
jtung-apple Feb 20, 2025
616e1bd
Align XML definitions for WebRTC Requester cluster with spec (#37650)
yufengwangca Feb 20, 2025
1e2ac10
Initial cut of Matter camera app (#37625)
pidarped Feb 20, 2025
a5971fa
[CI] Add x86 build check for camera app (#37680)
yufengwangca Feb 20, 2025
7dccded
[platform][k32w0] Add API calls to set DCDC when entering and exiting…
mihai-ignat Feb 20, 2025
24d61c6
Add VID Verification to ZAP XML (#37640)
tcarmelveilleux Feb 20, 2025
4fa81f6
Add Mounted Dimmable load device type (1.4) (#37636)
silabs-alexandre Feb 20, 2025
88a2e59
[Silabs] Bugfix: PSA AEAD encryption/decryption fixed. (#37663)
rcasallas-silabs Feb 20, 2025
ce16ea3
[Silabs] [WiFi] Not allowing the DUT to go to sleep during commission…
chirag-silabs Feb 20, 2025
f447cc2
[Silabs][Wf200] Adding inline function for the rssi calculation for W…
chirag-silabs Feb 20, 2025
8f760aa
[Silabs][Docker] Bump sdk versions in Silabs docker (#37651)
chirag-silabs Feb 20, 2025
72bd391
Detect provisional in cmd and attributes, also zap regen. (#37692)
andy31415 Feb 20, 2025
27374a3
[nrfconnect] Add gcc-multilib and g++-multilib to Docker image (#37685)
adigie Feb 20, 2025
5398152
[NXP][common][NVS] Fix NVS Matter issue into ClearConfigValue API (#3…
Martin-NXP Feb 20, 2025
2130b32
[Darwin] MTRDevice_XPC needs to initialize queue (#37693)
jtung-apple Feb 20, 2025
1543d47
Bump Docker images versions to 115 (#37687)
adigie Feb 20, 2025
26a7b1c
Update Docker image for Sysconfig 1.22.0 update (#37665)
abiradarti Feb 20, 2025
9ad9d2c
[Testing] Refactor mock server to support distributed configuration l…
swan-amazon Feb 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[NXP][common][NVS] Fix NVS Matter issue into ClearConfigValue API (#3…
…7688)

Signed-off-by: Martin Girardot <martin.girardot@nxp.com>
Martin-NXP authored Feb 20, 2025
commit 53981524b98431003bfb17f6a7595a723843650b
4 changes: 3 additions & 1 deletion src/platform/nxp/common/NXPConfigNVS.cpp
Original file line number Diff line number Diff line change
@@ -333,7 +333,9 @@ CHIP_ERROR NXPConfig::ClearConfigValue(Key key)
{
char key_name[SETTINGS_MAX_NAME_LEN + 1];
sprintf(key_name, CHIP_DEVICE_INTEGER_SETTINGS_KEY "/%04x", key);
return ClearConfigValue(key_name);
if (settings_delete(key_name) != 0)
return CHIP_ERROR_PERSISTED_STORAGE_FAILED;
return CHIP_NO_ERROR;
}

CHIP_ERROR NXPConfig::ClearConfigValue(const char * keyString)