Skip to content

[ICD] Add automation for ICDB 1.1 cert test #40007

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

Draft
wants to merge 10 commits into
base: master
Choose a base branch
from

Conversation

mkardous-silabs
Copy link
Contributor

@mkardous-silabs mkardous-silabs commented Jul 14, 2025

DO NOT REVIEW - Still testing with CI

Summary

TBU

Related issues

TBU

Testing

TBU

Readability checklist

The checklist below will help the reviewer finish PR review in time and keep the
code readable:

  • PR title is
    descriptive
  • Apply the
    “When in Rome…”
    rule (coding style)
  • PR size is short
  • Try to avoid "squashing" and "force-update" in commit history
  • CI time didn't increase

See: Pull Request Guidelines

Copy link
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 an automated test case TC_ICDB_1_1 for the ICD Check-In Protocol. The changes include a new Python test script, modifications to the test application configuration to speed up ICD state transitions, and updates to the PICS file to enable the new test. The new test script is well-structured, but I've found several instances of incorrect error handling logic that could lead to confusing test failures. I've also suggested a small simplification in the test cleanup logic.

try:
registered_clients = await self.read_single_attribute_check_success(endpoint=0, cluster=Clusters.Objects.IcdManagement, attribute=attributes.RegisteredClients)
except InteractionModelError as e:
asserts.assert_equal(e.status, Status.Success, "Failed to read RegisteredClients attribute")
Copy link
Contributor

Choose a reason for hiding this comment

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

high

The error handling logic here is incorrect. If an InteractionModelError is caught, it signifies a failure, so e.status will not be Status.Success. The current assertion will always fail, but with a potentially confusing message. It's better to directly fail the test with asserts.fail and provide a clear error message that includes the exception details.

Suggested change
asserts.assert_equal(e.status, Status.Success, "Failed to read RegisteredClients attribute")
asserts.fail(f"Failed to read RegisteredClients attribute: {e}")

try:
await self.send_single_cmd(cmd=commands.UnregisterClient(checkInNodeID=client.checkInNodeID), endpoint=0)
except InteractionModelError as e:
asserts.assert_equal(e.status, Status.Success, f"Failed to unregister client {client.checkInNodeID}: {e}")
Copy link
Contributor

Choose a reason for hiding this comment

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

high

This error handling logic is incorrect for the same reason as the previous one. An InteractionModelError indicates a failure, so e.status will not be Status.Success. The assertion should be replaced with asserts.fail for clear and direct failure reporting.

Suggested change
asserts.assert_equal(e.status, Status.Success, f"Failed to unregister client {client.checkInNodeID}: {e}")
asserts.fail(f"Failed to unregister client {client.checkInNodeID}: {e}")

f"ActiveModeThreshold: {active_mode_threshold_ms}ms")

except InteractionModelError as e:
asserts.assert_equal(e.status, Status.Success, "Failed to read ICD configuration attributes")
Copy link
Contributor

Choose a reason for hiding this comment

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

high

This error handling logic is also incorrect. An InteractionModelError indicates a failure, so e.status will not be Status.Success. The assertion should be replaced with asserts.fail for clear and direct failure reporting, including the exception details.

Suggested change
asserts.assert_equal(e.status, Status.Success, "Failed to read ICD configuration attributes")
asserts.fail(f"Failed to read ICD configuration attributes: {e}")

Comment on lines +174 to +180
if require_unregister:
try:
if registration_info:
await self.th2.UnpairDevice(self.dut_node_id)
except Exception as e:
asserts.fail(f"Failed to unregister client: {e}")
pass
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

The cleanup logic in the finally block can be simplified for better readability and maintainability.

  • The check if require_unregister: is sufficient to determine if unpairing is needed. The registration_info check is redundant.
  • The pass statement on line 180 is unreachable because asserts.fail raises an exception and terminates the execution.
Suggested change
if require_unregister:
try:
if registration_info:
await self.th2.UnpairDevice(self.dut_node_id)
except Exception as e:
asserts.fail(f"Failed to unregister client: {e}")
pass
if require_unregister:
try:
await self.th2.UnpairDevice(self.dut_node_id)
except Exception as e:
asserts.fail(f"Failed to unregister client: {e}")

Copy link

github-actions bot commented Jul 14, 2025

PR #40007: Size comparison from d0ded4d to 673bece

Full report (59 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
platform target config section d0ded4d 673bece change % change
bl602 lighting-app bl602+mfd+littlefs+rpc FLASH 1102624 1102624 0 0.0
RAM 178970 178970 0 0.0
bl702 lighting-app bl702+eth FLASH 656022 656022 0 0.0
RAM 134929 134929 0 0.0
bl702+wifi FLASH 833210 833210 0 0.0
RAM 124469 124469 0 0.0
bl706+mfd+rpc+littlefs FLASH 1065328 1065328 0 0.0
RAM 117341 117341 0 0.0
bl702l contact-sensor-app bl702l+mfd+littlefs FLASH 894874 894874 0 0.0
RAM 105628 105628 0 0.0
lighting-app bl702l+mfd+littlefs FLASH 978592 978592 0 0.0
RAM 109820 109820 0 0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 FLASH 765024 765024 0 0.0
RAM 103336 103336 0 0.0
lock-ftd LP_EM_CC1354P10_6 FLASH 776396 776396 0 0.0
RAM 108504 108504 0 0.0
pump-app LP_EM_CC1354P10_6 FLASH 722752 722752 0 0.0
RAM 96908 96908 0 0.0
pump-controller-app LP_EM_CC1354P10_6 FLASH 707044 707044 0 0.0
RAM 97116 97116 0 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL FLASH 548818 548818 0 0.0
RAM 205104 205104 0 0.0
lock CC3235SF_LAUNCHXL FLASH 581770 581770 0 0.0
RAM 205304 205304 0 0.0
efr32 lock-app BRD4187C FLASH 956560 956560 0 0.0
RAM 126532 126532 0 0.0
BRD4338a FLASH 751012 751004 -8 -0.0
RAM 251880 251880 0 0.0
window-app BRD4187C FLASH 1049376 1049368 -8 -0.0
RAM 122728 122728 0 0.0
esp32 all-clusters-app c3devkit DRAM 102232 102232 0 0.0
FLASH 1780530 1780530 0 0.0
IRAM 83862 83862 0 0.0
m5stack DRAM 121116 121116 0 0.0
FLASH 1747826 1747826 0 0.0
IRAM 117071 117071 0 0.0
linux air-purifier-app debug unknown 4856 4856 0 0.0
FLASH 2793704 2793704 0 0.0
RAM 117192 117192 0 0.0
all-clusters-app debug unknown 5672 5672 0 0.0
FLASH 6195358 6195358 0 0.0
RAM 531936 531936 0 0.0
all-clusters-minimal-app debug unknown 5536 5536 0 0.0
FLASH 5470262 5470262 0 0.0
RAM 227768 227768 0 0.0
bridge-app debug unknown 5568 5568 0 0.0
FLASH 4804474 4804474 0 0.0
RAM 207456 207456 0 0.0
camera-app debug unknown 8976 8976 0 0.0
FLASH 6944923 6944923 0 0.0
RAM 230496 230496 0 0.0
camera-controller debug unknown 9216 9216 0 0.0
FLASH 14388219 14388219 0 0.0
RAM 662456 662456 0 0.0
chip-tool debug unknown 6272 6272 0 0.0
FLASH 14760385 14760385 0 0.0
RAM 656096 656096 0 0.0
chip-tool-ipv6only arm64 unknown 40736 40736 0 0.0
FLASH 12730631 12730631 0 0.0
RAM 702360 702360 0 0.0
closure-app debug unknown 5536 5536 0 0.0
FLASH 4787330 4787330 0 0.0
RAM 200344 200344 0 0.0
fabric-admin debug unknown 5952 5952 0 0.0
FLASH 12803205 12803205 0 0.0
RAM 655128 655128 0 0.0
fabric-bridge-app debug unknown 4816 4816 0 0.0
FLASH 4589804 4589804 0 0.0
RAM 193200 193200 0 0.0
fabric-sync debug unknown 5064 5064 0 0.0
FLASH 5738573 5738573 0 0.0
RAM 492448 492448 0 0.0
lighting-app debug+rpc+ui unknown 6280 6280 0 0.0
FLASH 5691265 5691265 0 0.0
RAM 209720 209720 0 0.0
lock-app debug unknown 5496 5496 0 0.0
FLASH 4833186 4833186 0 0.0
RAM 196936 196936 0 0.0
ota-provider-app debug unknown 4856 4856 0 0.0
FLASH 4444046 4444046 0 0.0
RAM 185952 185952 0 0.0
ota-requestor-app debug unknown 4736 4736 0 0.0
FLASH 4516210 4516210 0 0.0
RAM 188824 188824 0 0.0
shell debug unknown 4288 4288 0 0.0
FLASH 3073052 3073052 0 0.0
RAM 147088 147088 0 0.0
thermostat-no-ble arm64 unknown 9824 9824 0 0.0
FLASH 4233279 4233279 0 0.0
RAM 233104 233104 0 0.0
tv-app debug unknown 5832 5832 0 0.0
FLASH 6103405 6103405 0 0.0
RAM 616728 616728 0 0.0
tv-casting-app debug unknown 5352 5352 0 0.0
FLASH 12906109 12906109 0 0.0
RAM 772464 772464 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 FLASH 888040 888040 0 0.0
RAM 166122 166122 0 0.0
nrf7002dk_nrf5340_cpuapp FLASH 897160 897160 0 0.0
RAM 145060 145060 0 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 FLASH 858364 858364 0 0.0
RAM 141014 141014 0 0.0
nxp contact mcxw71+release FLASH 624712 624712 0 0.0
RAM 63132 63132 0 0.0
lock mcxw71+release FLASH 775920 775920 0 0.0
RAM 67788 67788 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 FLASH 1632332 1632332 0 0.0
RAM 211064 211064 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 FLASH 1576524 1576524 0 0.0
RAM 208432 208432 0 0.0
light cy8ckit_062s2_43012 FLASH 1449316 1449316 0 0.0
RAM 197152 197152 0 0.0
lock cy8ckit_062s2_43012 FLASH 1481572 1481572 0 0.0
RAM 224872 224872 0 0.0
qpg lighting-app qpg6200+debug FLASH 744144 744144 0 0.0
RAM 94252 94252 0 0.0
lock-app qpg6200+debug FLASH 753764 753764 0 0.0
RAM 94280 94280 0 0.0
stm32 light STM32WB5MM-DK FLASH 465212 465212 0 0.0
RAM 141336 141336 0 0.0
telink bridge-app tl7218x FLASH 702250 702250 0 0.0
RAM 93564 93564 0 0.0
light-app-ota-compress-lzma-shell-factory-data tl3218x FLASH 793978 793978 0 0.0
RAM 43980 43980 0 0.0
light-app-ota-shell-factory-data tl7218x FLASH 782384 782384 0 0.0
RAM 100876 100876 0 0.0
light-switch-app-ota-compress-lzma-factory-data tl7218x_retention FLASH 709500 709500 0 0.0
RAM 54204 54204 0 0.0
light-switch-app-ota-compress-lzma-shell-factory-data tlsr9528a FLASH 746094 746094 0 0.0
RAM 77368 77368 0 0.0
light-switch-app-ota-factory-data tl3218x_retention FLASH 722820 722820 0 0.0
RAM 36960 36960 0 0.0
lighting-app-ota-factory-data tlsr9118bdk40d FLASH 602920 602920 0 0.0
RAM 112496 112496 0 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d FLASH 817938 817942 4 0.0
RAM 99128 99128 0 0.0
tizen all-clusters-app arm unknown 5092 5092 0 0.0
FLASH 1695376 1695376 0 0.0
RAM 91360 91360 0 0.0
chip-tool-ubsan arm unknown 20800 20800 0 0.0
FLASH 21098370 21098370 0 0.0
RAM 9178412 9178412 0 0.0

Copy link

github-actions bot commented Jul 15, 2025

PR #40007: Size comparison from d0ded4d to 7483ee6

Full report (11 builds for cc13x4_26x4, cc32xx, qpg, stm32, tizen)
platform target config section d0ded4d 7483ee6 change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 FLASH 765024 765024 0 0.0
RAM 103336 103336 0 0.0
lock-ftd LP_EM_CC1354P10_6 FLASH 776396 776396 0 0.0
RAM 108504 108504 0 0.0
pump-app LP_EM_CC1354P10_6 FLASH 722752 722752 0 0.0
RAM 96908 96908 0 0.0
pump-controller-app LP_EM_CC1354P10_6 FLASH 707044 707044 0 0.0
RAM 97116 97116 0 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL FLASH 548818 549418 600 0.1
RAM 205104 205104 0 0.0
lock CC3235SF_LAUNCHXL FLASH 581770 581770 0 0.0
RAM 205304 205304 0 0.0
qpg lighting-app qpg6200+debug FLASH 744144 744144 0 0.0
RAM 94252 94252 0 0.0
lock-app qpg6200+debug FLASH 753764 753764 0 0.0
RAM 94280 94280 0 0.0
stm32 light STM32WB5MM-DK FLASH 465212 465212 0 0.0
RAM 141336 141336 0 0.0
tizen all-clusters-app arm unknown 5092 5092 0 0.0
FLASH 1695376 1698064 2688 0.2
RAM 91360 91360 0 0.0
chip-tool-ubsan arm unknown 20800 20800 0 0.0
FLASH 21098370 21098370 0 0.0
RAM 9178412 9178340 -72 -0.0

Copy link

github-actions bot commented Jul 15, 2025

PR #40007: Size comparison from d0ded4d to f4314b8

Full report (35 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, efr32, nrfconnect, psoc6, qpg, stm32, telink, tizen)
platform target config section d0ded4d f4314b8 change % change
bl602 lighting-app bl602+mfd+littlefs+rpc FLASH 1102624 1102624 0 0.0
RAM 178970 178970 0 0.0
bl702 lighting-app bl702+eth FLASH 656022 656022 0 0.0
RAM 134929 134929 0 0.0
bl702+wifi FLASH 833210 833210 0 0.0
RAM 124469 124469 0 0.0
bl706+mfd+rpc+littlefs FLASH 1065328 1065328 0 0.0
RAM 117341 117341 0 0.0
bl702l contact-sensor-app bl702l+mfd+littlefs FLASH 894874 894874 0 0.0
RAM 105628 105628 0 0.0
lighting-app bl702l+mfd+littlefs FLASH 978592 978592 0 0.0
RAM 109820 109820 0 0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 FLASH 765024 765024 0 0.0
RAM 103336 103336 0 0.0
lock-ftd LP_EM_CC1354P10_6 FLASH 776396 776396 0 0.0
RAM 108504 108504 0 0.0
pump-app LP_EM_CC1354P10_6 FLASH 722752 722752 0 0.0
RAM 96908 96908 0 0.0
pump-controller-app LP_EM_CC1354P10_6 FLASH 707044 707044 0 0.0
RAM 97116 97116 0 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL FLASH 548818 549418 600 0.1
RAM 205104 205104 0 0.0
lock CC3235SF_LAUNCHXL FLASH 581770 581770 0 0.0
RAM 205304 205304 0 0.0
efr32 lock-app BRD4187C FLASH 956560 956560 0 0.0
RAM 126532 126532 0 0.0
BRD4338a FLASH 751012 751004 -8 -0.0
RAM 251880 251880 0 0.0
window-app BRD4187C FLASH 1049376 1049368 -8 -0.0
RAM 122728 122728 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 FLASH 888040 888648 608 0.1
RAM 166122 166122 0 0.0
nrf7002dk_nrf5340_cpuapp FLASH 897160 897668 508 0.1
RAM 145060 145060 0 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 FLASH 858364 858976 612 0.1
RAM 141014 141014 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 FLASH 1632332 1633244 912 0.1
RAM 211064 211064 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 FLASH 1576524 1577420 896 0.1
RAM 208432 208432 0 0.0
light cy8ckit_062s2_43012 FLASH 1449316 1449316 0 0.0
RAM 197152 197152 0 0.0
lock cy8ckit_062s2_43012 FLASH 1481572 1481572 0 0.0
RAM 224872 224872 0 0.0
qpg lighting-app qpg6200+debug FLASH 744144 744144 0 0.0
RAM 94252 94252 0 0.0
lock-app qpg6200+debug FLASH 753764 753764 0 0.0
RAM 94280 94280 0 0.0
stm32 light STM32WB5MM-DK FLASH 465212 465212 0 0.0
RAM 141336 141336 0 0.0
telink bridge-app tl7218x FLASH 702250 702250 0 0.0
RAM 93564 93564 0 0.0
light-app-ota-compress-lzma-shell-factory-data tl3218x FLASH 793978 793978 0 0.0
RAM 43980 43980 0 0.0
light-app-ota-shell-factory-data tl7218x FLASH 782384 782384 0 0.0
RAM 100876 100876 0 0.0
light-switch-app-ota-compress-lzma-factory-data tl7218x_retention FLASH 709500 709500 0 0.0
RAM 54204 54204 0 0.0
light-switch-app-ota-compress-lzma-shell-factory-data tlsr9528a FLASH 746094 746094 0 0.0
RAM 77368 77368 0 0.0
light-switch-app-ota-factory-data tl3218x_retention FLASH 722820 722820 0 0.0
RAM 36960 36960 0 0.0
lighting-app-ota-factory-data tlsr9118bdk40d FLASH 602920 602920 0 0.0
RAM 112496 112496 0 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d FLASH 817938 817942 4 0.0
RAM 99128 99128 0 0.0
tizen all-clusters-app arm unknown 5092 5092 0 0.0
FLASH 1695376 1698064 2688 0.2
RAM 91360 91360 0 0.0
chip-tool-ubsan arm unknown 20800 20800 0 0.0
FLASH 21098370 21098370 0 0.0
RAM 9178412 9178340 -72 -0.0

Copy link

github-actions bot commented Jul 15, 2025

PR #40007: Size comparison from d0ded4d to 172e74f

Increases above 0.2%:

platform target config section d0ded4d 172e74f change % change
linux all-clusters-app debug FLASH 6195358 6208206 12848 0.2
thermostat-no-ble arm64 FLASH 4233279 4248431 15152 0.4
Full report (59 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
platform target config section d0ded4d 172e74f change % change
bl602 lighting-app bl602+mfd+littlefs+rpc FLASH 1102624 1102624 0 0.0
RAM 178970 178970 0 0.0
bl702 lighting-app bl702+eth FLASH 656022 656022 0 0.0
RAM 134929 134929 0 0.0
bl702+wifi FLASH 833210 833210 0 0.0
RAM 124469 124469 0 0.0
bl706+mfd+rpc+littlefs FLASH 1065328 1065328 0 0.0
RAM 117341 117341 0 0.0
bl702l contact-sensor-app bl702l+mfd+littlefs FLASH 894874 894874 0 0.0
RAM 105628 105628 0 0.0
lighting-app bl702l+mfd+littlefs FLASH 978592 978592 0 0.0
RAM 109820 109820 0 0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 FLASH 765024 765024 0 0.0
RAM 103336 103336 0 0.0
lock-ftd LP_EM_CC1354P10_6 FLASH 776396 776396 0 0.0
RAM 108504 108504 0 0.0
pump-app LP_EM_CC1354P10_6 FLASH 722752 722752 0 0.0
RAM 96908 96908 0 0.0
pump-controller-app LP_EM_CC1354P10_6 FLASH 707044 707044 0 0.0
RAM 97116 97116 0 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL FLASH 548818 549418 600 0.1
RAM 205104 205104 0 0.0
lock CC3235SF_LAUNCHXL FLASH 581770 581770 0 0.0
RAM 205304 205304 0 0.0
efr32 lock-app BRD4187C FLASH 956560 956560 0 0.0
RAM 126532 126532 0 0.0
BRD4338a FLASH 751012 751004 -8 -0.0
RAM 251880 251880 0 0.0
window-app BRD4187C FLASH 1049376 1049368 -8 -0.0
RAM 122728 122728 0 0.0
esp32 all-clusters-app c3devkit DRAM 102232 102232 0 0.0
FLASH 1780530 1781194 664 0.0
IRAM 83862 83862 0 0.0
m5stack DRAM 121116 121116 0 0.0
FLASH 1747826 1748454 628 0.0
IRAM 117071 117071 0 0.0
linux air-purifier-app debug unknown 4856 4856 0 0.0
FLASH 2793704 2799114 5410 0.2
RAM 117192 117192 0 0.0
all-clusters-app debug unknown 5672 5672 0 0.0
FLASH 6195358 6208206 12848 0.2
RAM 531936 532352 416 0.1
all-clusters-minimal-app debug unknown 5536 5536 0 0.0
FLASH 5470262 5475670 5408 0.1
RAM 227768 227768 0 0.0
bridge-app debug unknown 5568 5568 0 0.0
FLASH 4804474 4804474 0 0.0
RAM 207456 207456 0 0.0
camera-app debug unknown 8976 8976 0 0.0
FLASH 6944923 6944923 0 0.0
RAM 230496 230496 0 0.0
camera-controller debug unknown 9216 9216 0 0.0
FLASH 14388219 14388219 0 0.0
RAM 662456 662456 0 0.0
chip-tool debug unknown 6272 6272 0 0.0
FLASH 14760385 14760387 2 0.0
RAM 656096 656096 0 0.0
chip-tool-ipv6only arm64 unknown 40736 40736 0 0.0
FLASH 12730631 12730631 0 0.0
RAM 702360 702360 0 0.0
closure-app debug unknown 5536 5536 0 0.0
FLASH 4787330 4787330 0 0.0
RAM 200344 200344 0 0.0
fabric-admin debug unknown 5952 5952 0 0.0
FLASH 12803205 12803205 0 0.0
RAM 655128 655128 0 0.0
fabric-bridge-app debug unknown 4816 4816 0 0.0
FLASH 4589804 4589804 0 0.0
RAM 193200 193200 0 0.0
fabric-sync debug unknown 5064 5064 0 0.0
FLASH 5738573 5738573 0 0.0
RAM 492448 492448 0 0.0
lighting-app debug+rpc+ui unknown 6280 6280 0 0.0
FLASH 5691265 5691265 0 0.0
RAM 209720 209720 0 0.0
lock-app debug unknown 5496 5496 0 0.0
FLASH 4833186 4833186 0 0.0
RAM 196936 196936 0 0.0
ota-provider-app debug unknown 4856 4856 0 0.0
FLASH 4444046 4444046 0 0.0
RAM 185952 185952 0 0.0
ota-requestor-app debug unknown 4736 4736 0 0.0
FLASH 4516210 4516210 0 0.0
RAM 188824 188824 0 0.0
shell debug unknown 4288 4288 0 0.0
FLASH 3073052 3078460 5408 0.2
RAM 147088 147088 0 0.0
thermostat-no-ble arm64 unknown 9824 9840 16 0.2
FLASH 4233279 4248431 15152 0.4
RAM 233104 233632 528 0.2
tv-app debug unknown 5832 5832 0 0.0
FLASH 6103405 6103405 0 0.0
RAM 616728 616728 0 0.0
tv-casting-app debug unknown 5352 5352 0 0.0
FLASH 12906109 12906109 0 0.0
RAM 772464 772464 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 FLASH 888040 888648 608 0.1
RAM 166122 166122 0 0.0
nrf7002dk_nrf5340_cpuapp FLASH 897160 897668 508 0.1
RAM 145060 145060 0 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 FLASH 858364 858976 612 0.1
RAM 141014 141014 0 0.0
nxp contact mcxw71+release FLASH 624712 624712 0 0.0
RAM 63132 63132 0 0.0
lock mcxw71+release FLASH 775920 775920 0 0.0
RAM 67788 67788 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 FLASH 1632332 1633244 912 0.1
RAM 211064 211064 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 FLASH 1576524 1577420 896 0.1
RAM 208432 208432 0 0.0
light cy8ckit_062s2_43012 FLASH 1449316 1449316 0 0.0
RAM 197152 197152 0 0.0
lock cy8ckit_062s2_43012 FLASH 1481572 1481572 0 0.0
RAM 224872 224872 0 0.0
qpg lighting-app qpg6200+debug FLASH 744144 744144 0 0.0
RAM 94252 94252 0 0.0
lock-app qpg6200+debug FLASH 753764 753764 0 0.0
RAM 94280 94280 0 0.0
stm32 light STM32WB5MM-DK FLASH 465212 465212 0 0.0
RAM 141336 141336 0 0.0
telink bridge-app tl7218x FLASH 702250 702250 0 0.0
RAM 93564 93564 0 0.0
light-app-ota-compress-lzma-shell-factory-data tl3218x FLASH 793978 793978 0 0.0
RAM 43980 43980 0 0.0
light-app-ota-shell-factory-data tl7218x FLASH 782384 782384 0 0.0
RAM 100876 100876 0 0.0
light-switch-app-ota-compress-lzma-factory-data tl7218x_retention FLASH 709500 709500 0 0.0
RAM 54204 54204 0 0.0
light-switch-app-ota-compress-lzma-shell-factory-data tlsr9528a FLASH 746094 746094 0 0.0
RAM 77368 77368 0 0.0
light-switch-app-ota-factory-data tl3218x_retention FLASH 722820 722820 0 0.0
RAM 36960 36960 0 0.0
lighting-app-ota-factory-data tlsr9118bdk40d FLASH 602920 602920 0 0.0
RAM 112496 112496 0 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d FLASH 817938 817942 4 0.0
RAM 99128 99128 0 0.0
tizen all-clusters-app arm unknown 5092 5092 0 0.0
FLASH 1695376 1698064 2688 0.2
RAM 91360 91360 0 0.0
chip-tool-ubsan arm unknown 20800 20800 0 0.0
FLASH 21098370 21098370 0 0.0
RAM 9178412 9178340 -72 -0.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant