Skip to content

add the DeviceLocation attribute to the Basic Information cluster XMLs#43342

Merged
mergify[bot] merged 23 commits intoproject-chip:masterfrom
plauric:basic_info_device_location_xml
Mar 16, 2026
Merged

add the DeviceLocation attribute to the Basic Information cluster XMLs#43342
mergify[bot] merged 23 commits intoproject-chip:masterfrom
plauric:basic_info_device_location_xml

Conversation

@plauric
Copy link
Copy Markdown
Contributor

@plauric plauric commented Feb 26, 2026

Add the DeviceLocation attribute to the Basic Information cluster XMLs. This is a provisional attribute in the current spec text.

Testing

I successfully ran the zap regen script and built chip-tool using these changes.

@plauric plauric self-assigned this Feb 26, 2026
@CLAassistant
Copy link
Copy Markdown

CLAassistant commented Feb 26, 2026

CLA assistant check
All committers have signed the CLA.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request adds the provisional DeviceLocation attribute to the Basic Information cluster. The changes correctly update the data models in XML and .matter files, as well as the corresponding generated Java and Kotlin code.

My review is focused on the generated code, as per the repository's style guide. I've found a potential null pointer issue in the newly generated Java struct for LocationDescriptorStruct where a mandatory field is not being validated before use. I've left a specific comment with a suggested fix.

@github-actions
Copy link
Copy Markdown

github-actions bot commented Feb 26, 2026

PR #43342: Size comparison from 8376e55 to ba62cb6

Full report (6 builds for cc32xx, nrfconnect, realtek, stm32)
platform target config section 8376e55 ba62cb6 change % change
cc32xx air-purifier CC3235SF_LAUNCHXL FLASH 558810 558810 0 0.0
RAM 204560 204560 0 0.0
lock CC3235SF_LAUNCHXL FLASH 591886 591886 0 0.0
RAM 204808 204808 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 FLASH 957584 957584 0 0.0
RAM 162328 162328 0 0.0
realtek light-switch-app rtl8777g FLASH 721224 721224 0 0.0
RAM 113536 113536 0 0.0
lighting-app rtl8777g FLASH 768032 768032 0 0.0
RAM 114744 114744 0 0.0
stm32 light STM32WB5MM-DK FLASH 478552 478552 0 0.0
RAM 141388 141388 0 0.0

@github-actions
Copy link
Copy Markdown

github-actions bot commented Feb 26, 2026

PR #43342: Size comparison from 8376e55 to c8cb79c

Full report (4 builds for nrfconnect, realtek, stm32)
platform target config section 8376e55 c8cb79c change % change
nrfconnect all-clusters-app nrf52840dk_nrf52840 FLASH 957584 957584 0 0.0
RAM 162328 162328 0 0.0
realtek light-switch-app rtl8777g FLASH 721224 721224 0 0.0
RAM 113536 113536 0 0.0
lighting-app rtl8777g FLASH 768032 768032 0 0.0
RAM 114744 114744 0 0.0
stm32 light STM32WB5MM-DK FLASH 478552 478552 0 0.0
RAM 141388 141388 0 0.0

@github-actions
Copy link
Copy Markdown

PR #43342: Size comparison from 8376e55 to 9aeab5c

Full report (6 builds for cc32xx, nrfconnect, realtek, stm32)
platform target config section 8376e55 9aeab5c change % change
cc32xx air-purifier CC3235SF_LAUNCHXL FLASH 558810 558810 0 0.0
RAM 204560 204560 0 0.0
lock CC3235SF_LAUNCHXL FLASH 591886 591886 0 0.0
RAM 204808 204808 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 FLASH 957584 957584 0 0.0
RAM 162328 162328 0 0.0
realtek light-switch-app rtl8777g FLASH 721224 721224 0 0.0
RAM 113536 113536 0 0.0
lighting-app rtl8777g FLASH 768032 768032 0 0.0
RAM 114744 114744 0 0.0
stm32 light STM32WB5MM-DK FLASH 478552 478552 0 0.0
RAM 141388 141388 0 0.0

Copy link
Copy Markdown
Contributor

@andy31415 andy31415 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Request changes: Updates to XMLs that use alchemy should keep using alchemy. Given that the git text did not change, I think maybe alchemy was not used?

@github-project-automation github-project-automation bot moved this from Todo to In Progress in [Platform] Darwin Feb 27, 2026
@andy31415
Copy link
Copy Markdown
Contributor

@plauric should we also add this for bridged device basic info? Or would that be a separate PR?

Asking because I am working on a code driven conversion and we did not implement the location yet because it was not defined in the XML. Yet https://github.com/project-chip/connectedhomeip/blob/master/examples/bridge-app/linux/Device.cpp#L88 somewhat has it (except it is not exposed in https://github.com/project-chip/connectedhomeip/blob/master/examples/bridge-app/linux/main.cpp#L142 because we have no constants for it ...

@plauric
Copy link
Copy Markdown
Contributor Author

plauric commented Feb 27, 2026

@plauric should we also add this for bridged device basic info? Or would that be a separate PR?

Yes, that's the plan. I'll make the change in the next commit.

@plauric
Copy link
Copy Markdown
Contributor Author

plauric commented Feb 27, 2026

Asking because I am working on a code driven conversion and we did not implement the location yet because it was not defined in the XML. Yet https://github.com/project-chip/connectedhomeip/blob/master/examples/bridge-app/linux/Device.cpp#L88 somewhat has it [...]

@andy31415 I think that's a different location :) Specifically, that's an attribute named Location, which has a string type value, and which indicates the country code where the device is located. That's meant to help with things like helping the device set the wifi regulatory domain, for example.

The attribute I'm trying to add is called DeviceLocation, and it has a complex type (a struct).

@andy31415
Copy link
Copy Markdown
Contributor

Asking because I am working on a code driven conversion and we did not implement the location yet because it was not defined in the XML. Yet https://github.com/project-chip/connectedhomeip/blob/master/examples/bridge-app/linux/Device.cpp#L88 somewhat has it [...]

@andy31415 I think that's a different location :) Specifically, that's an attribute named Location, which has a string type value, and which indicates the country code where the device is located. That's meant to help with things like helping the device set the wifi regulatory domain, for example.

The attribute I'm trying to add is called DeviceLocation, and it has a complex type (a struct).

Ah, that explains things better. Thanks!

@mergify mergify bot added the conflict label Mar 2, 2026
@codecov
Copy link
Copy Markdown

codecov bot commented Mar 4, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 54.07%. Comparing base (719a930) to head (4fc826f).
⚠️ Report is 42 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff             @@
##           master   #43342      +/-   ##
==========================================
+ Coverage   54.05%   54.07%   +0.02%     
==========================================
  Files        1548     1548              
  Lines      106692   106701       +9     
  Branches    13314    13309       -5     
==========================================
+ Hits        57670    57699      +29     
+ Misses      49022    49002      -20     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@github-actions
Copy link
Copy Markdown

github-actions bot commented Mar 4, 2026

PR #43342: Size comparison from 7a5d279 to dd543a1

Full report (34 builds for bl602, bl616, bl702, bl702l, cc13x4_26x4, cc32xx, efr32, esp32, nrfconnect, nxp, psoc6, qpg, realtek, stm32, telink)
platform target config section 7a5d279 dd543a1 change % change
bl602 lighting-app bl602+mfd+littlefs+rpc FLASH 1089622 1089624 2 0.0
RAM 144826 144826 0 0.0
bl616 lighting-app bl616+thread FLASH 1100292 1100292 0 0.0
RAM 104248 104248 0 0.0
bl616+wifi+shell FLASH 1587148 1587156 8 0.0
RAM 98112 98112 0 0.0
bl702 lighting-app bl702+eth FLASH 1052980 1052982 2 0.0
RAM 108405 108405 0 0.0
bl702l contact-sensor-app bl702l+mfd+littlefs FLASH 890998 891000 2 0.0
RAM 105828 105828 0 0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 FLASH 780240 780240 0 0.0
RAM 103396 103396 0 0.0
lock-ftd LP_EM_CC1354P10_6 FLASH 787412 787412 0 0.0
RAM 108580 108580 0 0.0
pump-app LP_EM_CC1354P10_6 FLASH 733576 733576 0 0.0
RAM 97372 97372 0 0.0
pump-controller-app LP_EM_CC1354P10_6 FLASH 716996 716996 0 0.0
RAM 97524 97524 0 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL FLASH 559006 559006 0 0.0
RAM 204560 204560 0 0.0
lock CC3235SF_LAUNCHXL FLASH 592242 592242 0 0.0
RAM 204808 204808 0 0.0
efr32 lock-app BRD4187C FLASH 972492 972484 -8 -0.0
RAM 125284 125284 0 0.0
BRD4338a FLASH 770348 770348 0 0.0
RAM 236624 236624 0 0.0
window-app BRD4187C FLASH 1075936 1075936 0 0.0
RAM 126504 126504 0 0.0
esp32 all-clusters-app c3devkit DRAM 98548 98548 0 0.0
FLASH 1592950 1592950 0 0.0
IRAM 93514 93514 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 FLASH 854892 854892 0 0.0
RAM 162165 162165 0 0.0
nxp contact mcxw71+release FLASH 736696 736696 0 0.0
RAM 66992 66992 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 FLASH 1705444 1705444 0 0.0
RAM 214092 214092 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 FLASH 1606148 1606148 0 0.0
RAM 210940 210940 0 0.0
light cy8ckit_062s2_43012 FLASH 1471724 1471724 0 0.0
RAM 197060 197060 0 0.0
lock cy8ckit_062s2_43012 FLASH 1498228 1498228 0 0.0
RAM 224796 224796 0 0.0
qpg lighting-app qpg6200+debug FLASH 840920 840920 0 0.0
RAM 127844 127844 0 0.0
lock-app qpg6200+debug FLASH 779580 779580 0 0.0
RAM 118792 118792 0 0.0
realtek light-switch-app rtl8777g FLASH 721672 721672 0 0.0
RAM 113536 113536 0 0.0
lighting-app rtl8777g FLASH 768920 768920 0 0.0
RAM 114768 114768 0 0.0
stm32 light STM32WB5MM-DK FLASH 479196 479196 0 0.0
RAM 141404 141404 0 0.0
telink bridge-app tl7218x FLASH 728334 728334 0 0.0
RAM 95852 95852 0 0.0
light-app-ota-compress-lzma-shell-factory-data tl3218x FLASH 853272 853272 0 0.0
RAM 44264 44264 0 0.0
tl7218x FLASH 844672 844672 0 0.0
RAM 99652 99652 0 0.0
light-switch-app-ota-compress-lzma-factory-data tl7218x_retention FLASH 725784 725784 0 0.0
RAM 55832 55832 0 0.0
light-switch-app-ota-compress-lzma-shell-factory-data tlsr9528a FLASH 788348 788348 0 0.0
RAM 75016 75016 0 0.0
light-switch-app-ota-factory-data tl3218x_retention FLASH 725784 725784 0 0.0
RAM 33320 33320 0 0.0
lighting-app-ota-factory-data tlsr9118bdk40d FLASH 615722 615722 0 0.0
RAM 118312 118312 0 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d FLASH 843494 843498 4 0.0
RAM 97360 97360 0 0.0

@plauric plauric requested a review from andy31415 March 4, 2026 12:38
@github-actions
Copy link
Copy Markdown

github-actions bot commented Mar 11, 2026

PR #43342: Size comparison from 719a930 to 4b06018

Full report (29 builds for bl602, bl616, bl702, bl702l, cc13x4_26x4, cc32xx, nrfconnect, psoc6, qpg, realtek, stm32, telink)
platform target config section 719a930 4b06018 change % change
bl602 lighting-app bl602+mfd+littlefs+rpc FLASH 1089380 1089674 294 0.0
RAM 144762 144762 0 0.0
bl616 lighting-app bl616+thread FLASH 1100308 1100324 16 0.0
RAM 104184 104184 0 0.0
bl616+wifi+shell FLASH 1586908 1586916 8 0.0
RAM 98080 98080 0 0.0
bl702 lighting-app bl702+eth FLASH 1052740 1052774 34 0.0
RAM 108357 108357 0 0.0
bl702l contact-sensor-app bl702l+mfd+littlefs FLASH 890764 890764 0 0.0
RAM 105748 105748 0 0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 FLASH 779156 779164 8 0.0
RAM 103324 103324 0 0.0
lock-ftd LP_EM_CC1354P10_6 FLASH 786528 786528 0 0.0
RAM 108508 108508 0 0.0
pump-app LP_EM_CC1354P10_6 FLASH 732724 732724 0 0.0
RAM 97316 97316 0 0.0
pump-controller-app LP_EM_CC1354P10_6 FLASH 716160 716160 0 0.0
RAM 97476 97476 0 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL FLASH 558106 558106 0 0.0
RAM 204504 204504 0 0.0
lock CC3235SF_LAUNCHXL FLASH 591230 591230 0 0.0
RAM 204744 204744 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 FLASH 857504 857516 12 0.0
RAM 161999 161999 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 FLASH 1708500 1708508 8 0.0
RAM 213940 213940 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 FLASH 1607172 1607180 8 0.0
RAM 210812 210812 0 0.0
light cy8ckit_062s2_43012 FLASH 1470396 1470412 16 0.0
RAM 196988 196988 0 0.0
lock cy8ckit_062s2_43012 FLASH 1497092 1497092 0 0.0
RAM 224732 224732 0 0.0
qpg lighting-app qpg6200+debug FLASH 840620 840636 16 0.0
RAM 127780 127780 0 0.0
lock-app qpg6200+debug FLASH 779312 779312 0 0.0
RAM 118728 118728 0 0.0
realtek light-switch-app rtl8777g FLASH 720520 720520 0 0.0
RAM 113448 113448 0 0.0
lighting-app rtl8777g FLASH 767728 767736 8 0.0
RAM 114688 114688 0 0.0
stm32 light STM32WB5MM-DK FLASH 478804 478820 16 0.0
RAM 141324 141324 0 0.0
telink bridge-app tl7218x FLASH 728838 728838 0 0.0
RAM 95768 95768 0 0.0
light-app-ota-compress-lzma-shell-factory-data tl3218x FLASH 852990 852990 0 0.0
RAM 44184 44184 0 0.0
tl7218x FLASH 844390 844390 0 0.0
RAM 99572 99572 0 0.0
light-switch-app-ota-compress-lzma-factory-data tl7218x_retention FLASH 725664 725664 0 0.0
RAM 55740 55740 0 0.0
light-switch-app-ota-compress-lzma-shell-factory-data tlsr9528a FLASH 788228 788228 0 0.0
RAM 74924 74924 0 0.0
light-switch-app-ota-factory-data tl3218x_retention FLASH 725664 725664 0 0.0
RAM 33228 33228 0 0.0
lighting-app-ota-factory-data tlsr9118bdk40d FLASH 615446 615446 0 0.0
RAM 118232 118232 0 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d FLASH 843180 843210 30 0.0
RAM 97280 97280 0 0.0

@github-actions
Copy link
Copy Markdown

github-actions bot commented Mar 11, 2026

PR #43342: Size comparison from 719a930 to e9e7004

Full report (34 builds for bl602, bl616, bl702, bl702l, cc13x4_26x4, cc32xx, efr32, esp32, nrfconnect, nxp, psoc6, qpg, realtek, stm32, telink)
platform target config section 719a930 e9e7004 change % change
bl602 lighting-app bl602+mfd+littlefs+rpc FLASH 1089380 1089396 16 0.0
RAM 144762 144762 0 0.0
bl616 lighting-app bl616+thread FLASH 1100308 1100324 16 0.0
RAM 104184 104184 0 0.0
bl616+wifi+shell FLASH 1586908 1586916 8 0.0
RAM 98080 98080 0 0.0
bl702 lighting-app bl702+eth FLASH 1052740 1052752 12 0.0
RAM 108357 108357 0 0.0
bl702l contact-sensor-app bl702l+mfd+littlefs FLASH 890764 890764 0 0.0
RAM 105748 105748 0 0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 FLASH 779156 779164 8 0.0
RAM 103324 103324 0 0.0
lock-ftd LP_EM_CC1354P10_6 FLASH 786528 786528 0 0.0
RAM 108508 108508 0 0.0
pump-app LP_EM_CC1354P10_6 FLASH 732724 732724 0 0.0
RAM 97316 97316 0 0.0
pump-controller-app LP_EM_CC1354P10_6 FLASH 716160 716160 0 0.0
RAM 97476 97476 0 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL FLASH 558106 558106 0 0.0
RAM 204504 204504 0 0.0
lock CC3235SF_LAUNCHXL FLASH 591230 591230 0 0.0
RAM 204744 204744 0 0.0
efr32 lock-app BRD4187C FLASH 971196 971196 0 0.0
RAM 125796 125796 0 0.0
BRD4338a FLASH 769284 769276 -8 -0.0
RAM 236528 236528 0 0.0
window-app BRD4187C FLASH 1074656 1074656 0 0.0
RAM 126440 126440 0 0.0
esp32 all-clusters-app c3devkit DRAM 98356 98356 0 0.0
FLASH 1596556 1596564 8 0.0
IRAM 93514 93514 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 FLASH 857504 857588 84 0.0
RAM 161999 161999 0 0.0
nxp contact mcxw71+release FLASH 735808 735808 0 0.0
RAM 66936 66936 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 FLASH 1708500 1708508 8 0.0
RAM 213940 213940 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 FLASH 1607172 1607180 8 0.0
RAM 210812 210812 0 0.0
light cy8ckit_062s2_43012 FLASH 1470396 1470412 16 0.0
RAM 196988 196988 0 0.0
lock cy8ckit_062s2_43012 FLASH 1497092 1497092 0 0.0
RAM 224732 224732 0 0.0
qpg lighting-app qpg6200+debug FLASH 840620 840636 16 0.0
RAM 127780 127780 0 0.0
lock-app qpg6200+debug FLASH 779312 779312 0 0.0
RAM 118728 118728 0 0.0
realtek light-switch-app rtl8777g FLASH 720520 720520 0 0.0
RAM 113448 113448 0 0.0
lighting-app rtl8777g FLASH 767728 767736 8 0.0
RAM 114688 114688 0 0.0
stm32 light STM32WB5MM-DK FLASH 478804 478820 16 0.0
RAM 141324 141324 0 0.0
telink bridge-app tl7218x FLASH 728838 728648 -190 -0.0
RAM 95768 95760 -8 -0.0
light-app-ota-compress-lzma-shell-factory-data tl3218x FLASH 852990 852792 -198 -0.0
RAM 44184 44176 -8 -0.0
tl7218x FLASH 844390 844196 -194 -0.0
RAM 99572 99564 -8 -0.0
light-switch-app-ota-compress-lzma-factory-data tl7218x_retention FLASH 725664 725462 -202 -0.0
RAM 55740 55740 0 0.0
light-switch-app-ota-compress-lzma-shell-factory-data tlsr9528a FLASH 788228 788030 -198 -0.0
RAM 74924 74916 -8 -0.0
light-switch-app-ota-factory-data tl3218x_retention FLASH 725664 725458 -206 -0.0
RAM 33228 33220 -8 -0.0
lighting-app-ota-factory-data tlsr9118bdk40d FLASH 615446 616200 754 0.1
RAM 118232 118232 0 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d FLASH 843180 842970 -210 -0.0
RAM 97280 97272 -8 -0.0

@github-actions
Copy link
Copy Markdown

PR #43342: Size comparison from 719a930 to c75c36c

Full report (1 build for stm32)
platform target config section 719a930 c75c36c change % change
stm32 light STM32WB5MM-DK FLASH 478804 478820 16 0.0
RAM 141324 141324 0 0.0

@plauric plauric marked this pull request as ready for review March 11, 2026 20:44
@plauric plauric requested review from a team as code owners March 11, 2026 20:44
@github-actions
Copy link
Copy Markdown

github-actions bot commented Mar 11, 2026

PR #43342: Size comparison from 719a930 to 4fc826f

Full report (34 builds for bl602, bl616, bl702, bl702l, cc13x4_26x4, cc32xx, efr32, esp32, nrfconnect, nxp, psoc6, qpg, realtek, stm32, telink)
platform target config section 719a930 4fc826f change % change
bl602 lighting-app bl602+mfd+littlefs+rpc FLASH 1089380 1089396 16 0.0
RAM 144762 144762 0 0.0
bl616 lighting-app bl616+thread FLASH 1100308 1100324 16 0.0
RAM 104184 104184 0 0.0
bl616+wifi+shell FLASH 1586908 1586916 8 0.0
RAM 98080 98080 0 0.0
bl702 lighting-app bl702+eth FLASH 1052740 1052752 12 0.0
RAM 108357 108357 0 0.0
bl702l contact-sensor-app bl702l+mfd+littlefs FLASH 890764 890764 0 0.0
RAM 105748 105748 0 0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 FLASH 779156 779164 8 0.0
RAM 103324 103324 0 0.0
lock-ftd LP_EM_CC1354P10_6 FLASH 786528 786528 0 0.0
RAM 108508 108508 0 0.0
pump-app LP_EM_CC1354P10_6 FLASH 732724 732724 0 0.0
RAM 97316 97316 0 0.0
pump-controller-app LP_EM_CC1354P10_6 FLASH 716160 716160 0 0.0
RAM 97476 97476 0 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL FLASH 558106 558106 0 0.0
RAM 204504 204504 0 0.0
lock CC3235SF_LAUNCHXL FLASH 591230 591230 0 0.0
RAM 204744 204744 0 0.0
efr32 lock-app BRD4187C FLASH 971196 971196 0 0.0
RAM 125796 125796 0 0.0
BRD4338a FLASH 769284 769276 -8 -0.0
RAM 236528 236528 0 0.0
window-app BRD4187C FLASH 1074656 1074656 0 0.0
RAM 126440 126440 0 0.0
esp32 all-clusters-app c3devkit DRAM 98356 98356 0 0.0
FLASH 1596556 1596564 8 0.0
IRAM 93514 93514 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 FLASH 857504 857588 84 0.0
RAM 161999 161999 0 0.0
nxp contact mcxw71+release FLASH 735808 735808 0 0.0
RAM 66936 66936 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 FLASH 1708500 1708508 8 0.0
RAM 213940 213940 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 FLASH 1607172 1607180 8 0.0
RAM 210812 210812 0 0.0
light cy8ckit_062s2_43012 FLASH 1470396 1470412 16 0.0
RAM 196988 196988 0 0.0
lock cy8ckit_062s2_43012 FLASH 1497092 1497092 0 0.0
RAM 224732 224732 0 0.0
qpg lighting-app qpg6200+debug FLASH 840620 840636 16 0.0
RAM 127780 127780 0 0.0
lock-app qpg6200+debug FLASH 779312 779312 0 0.0
RAM 118728 118728 0 0.0
realtek light-switch-app rtl8777g FLASH 720520 720520 0 0.0
RAM 113448 113448 0 0.0
lighting-app rtl8777g FLASH 767728 767736 8 0.0
RAM 114688 114688 0 0.0
stm32 light STM32WB5MM-DK FLASH 478804 478820 16 0.0
RAM 141324 141324 0 0.0
telink bridge-app tl7218x FLASH 728838 728648 -190 -0.0
RAM 95768 95760 -8 -0.0
light-app-ota-compress-lzma-shell-factory-data tl3218x FLASH 852990 852792 -198 -0.0
RAM 44184 44176 -8 -0.0
tl7218x FLASH 844390 844196 -194 -0.0
RAM 99572 99564 -8 -0.0
light-switch-app-ota-compress-lzma-factory-data tl7218x_retention FLASH 725664 725462 -202 -0.0
RAM 55740 55740 0 0.0
light-switch-app-ota-compress-lzma-shell-factory-data tlsr9528a FLASH 788228 788030 -198 -0.0
RAM 74924 74916 -8 -0.0
light-switch-app-ota-factory-data tl3218x_retention FLASH 725664 725458 -206 -0.0
RAM 33228 33220 -8 -0.0
lighting-app-ota-factory-data tlsr9118bdk40d FLASH 615446 616200 754 0.1
RAM 118232 118232 0 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d FLASH 843180 842970 -210 -0.0
RAM 97280 97272 -8 -0.0

@andy31415 andy31415 added the sdk-maintainer-approved PR marked by `matter-sdk-maintainers` as suitable for MERGE - meets guideline & sufficient reviews. label Mar 16, 2026
@mergify mergify bot merged commit 3683f59 into project-chip:master Mar 16, 2026
81 checks passed
@github-project-automation github-project-automation bot moved this from In Progress to Done in [Platform] Darwin Mar 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

app controller darwin examples chef Changes in examples/chef examples review - pending sdk-maintainer-approved PR marked by `matter-sdk-maintainers` as suitable for MERGE - meets guideline & sufficient reviews.

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

3 participants