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

[ESP32] Fix incorrect RTC log format in SystemTimeSupport #37534

Closed

Conversation

pimpalemahesh
Copy link
Contributor

Problem

Fixes espressif/esp-matter#1269

The tm_year and tm_mon values were being logged incorrectly, resulting in an invalid date format.

Changes

  • Updated the log statement to correctly display the year and month.
  • Adjusted tm_year by adding 1900.
  • Adjusted tm_mon by adding 1 to convert from zero-based indexing.

Testing

  • Verified the fix by setting the RTC time using the Time Synchronization cluster through chip-tool and checking the log output.
  • Logs now correctly reflect the expected timestamp format.

pimpalemahesh and others added 30 commits January 28, 2025 10:54
- Working backend with metric, trace and counter diagnostics
- Diagnostic interface implementation with ring buffer storage
- Added option ENABLE_ESP_DIAGNOSTICS_TRACE in chip KConfig
- Added required options for enabling matter diagnostic trace in project Kconfig
- Resolve buffer issues
- Use single buffer for store and retrieve of diagnostics
- Resolve data loss issue
…essary comments, format files, namespace changes
- backend: Replace linkedlist with map for counter diagnostics
- backend: Pass diagnostic storage as a parameter to backend
- esp32_diagnostic_trace: Return actual data size
- esp32_diagnostic_trace: improve storage class design
- add extra tlv closing bytes check before copying diagnostic
- unify diagnostic entries into a single type
- Add related logic in temperature-measurement-app
- Add private CircularTLVReader and CircularTLVWriter
- Remove redundant outer container for tlv's from Retrieve method
- Maintain TAG's for diagnostic entry elements
- Make diagnostic entry as a constant param to store method
- Move Murmurhash to utils namespace
…gnostics

- move diagnostic storage buffer to main
…ter to LogProvider

- add kconfig option for retrieval buffer size
- pass diagnostic storage instance as a pointer to backend
- replace ESPLog statement with ChipLog for logging
diagnostic-storage: update IsEmptyBuffer method to IsBufferEmpty
- change diagnostic TAG enum class
* Create basic Unit Test for Verhoff

* Change the build script for Accessor class

* Change structure and remove private accessors

* Change dependencies in build file

* Reduce dependencies list

* Remove empty sources

Editorial commit: remove extra `sources = []`, I expect our templates to handle this one missing.

---------

Co-authored-by: Andrei Litvin <[email protected]>
Added package libpcsclite-dev to start-sysroot-vm.sh.
This package is needed for the cross compilation of chip-tool for arm64.
… dependencies and unify initialization function (project-chip#37135)

* Changes the WiFi initialization and adds it to platfrom init flow

* Rename API based on refactor

* Add debug log for failed sl_matter_wifi_init

* Refactor platform-specific includes in MatterConfig.cpp

* Refactor WiFi initialization to remove platform-specific dependencies and unify initialization function

* Refactor InitWiFiStack to return CHIP_ERROR and improve error handling across implementations

* Improve documentation for wfx_bus_start function

* Remove error log from wfx_bus_start and update documentation for memory allocation failure

* Apply suggestions from code review

Co-authored-by: Mathieu Kardous <[email protected]>

* Refactor InitWiFiStack error handling to use appropriate CHIP_ERROR codes and update documentation

* Update src/platform/silabs/wifi/WifiInterface.h

Co-authored-by: Mathieu Kardous <[email protected]>

---------

Co-authored-by: Mathieu Kardous <[email protected]>
* [Zephyr] Add ZMS to Zephyr port

Added a possibility to use ZMS fs backend in Zephyr.
NVS fs backend imply is now controlled by the nrfconnect platform
configuration directly.
All other platforms use NVS fs backend by default.

Signed-off-by: Arkadiusz Balys <[email protected]>

[nrf toup] Fix defines for ZMS

It can be squashed with the 0c49058 commit.

Signed-off-by: Arkadiusz Balys <[email protected]>

* [Zephyr] Fix ICD LIT connected configurations

According to specification, if ICD LIT is supported,
UAT and LITS features must be supported too.

If `CHIP_ICD_LIT_SUPPORT` is selected, select CIP and UAT
configs instead of implying them.

Signed-off-by: Maciej Baczmanski <[email protected]>

* [nrfconnect] Introduced Kconfigs to configure few params

Introduced new Kconfig options to be able to configure the
parameters related to persistent subscriptions re-establishment.

Signed-off-by: Kamil Kasperczyk <[email protected]>

[nrfconnect] Added module to synchronize DFU processes

Introduced a module that can be used to synchronize DFU processes
and make it mutual exclusive (prevent concurrent DFU runs using
different protocols, e.g Matter OTA and DFU over BT SMP).

Signed-off-by: Kamil Kasperczyk <[email protected]>

[nrfconnect] Implement IPv6 agnostic L2 network state getters

* Added new API for generic IPv6 connectivity checks
* This patch allows the application layer to limit the amount
  of pre-processor logic (CONFIG_NET_L2_OPENTHREAD/CONFIG_CHIP_WIFI)
  needed to configure the

Signed-off-by: Marcin Kajor <[email protected]>

[nrfconnect] Added support for settings shell in mem profiling

Enabled settings shell configuration and increased shell command
buffer size when `CHIP_MEMORY_PROFILING` is enabled to allow
reading and writing settings using shell.

Signed-off-by: Maciej Baczmanski <[email protected]>

[nrfconnect] Introduced Kconfig to configure CHIP stack size

There is not Kconfig that would allow to set the CHIP task size,
what is not convenient, as other stacks can be configured using
Kconfig.

[nrfconnect] Added log for the WiFi connection failure

This might help when debugging the WiFi connection failures.

Signed-off-by: Marcin Kajor <[email protected]>

[nrfconnect] Refactor ExternalFlashManager

Make `ExternalFlashManager` a singleton

Signed-off-by: Maciej Baczmanski <[email protected]>

[nrfconnect] Increase workqueue stack size for LIT

Whien LIT is enabled, higher workqueue stack size is required
when entering active mode.

Signed-off-by: Maciej Baczmanski <[email protected]>

[nrfconnect] Switch to nRF54L15 DK

- Removed support for nRF54L15 PDK and added for nRF54L15 DK

[nrfconnect] wifi: Migrate to nRF70 upstream

nRF70 support moved upstream, update the names.

Signed-off-by: Chaitanya Tata <[email protected]>

[nrfconnect] matter: crypto: Use psa_crypto_config

-Previously there was a library called mbedcrypto_common which was
 used to pass build-related configurations to matter. This is changed
 to instead reference to the following:
 -psa_crypto_config (for PSA and Mbed TLS configurations)
 -psa_interface (for PSA crypto include files)
-The commit also removes passing the PSA crypto driver config file
 as this is no longer needed for an interface build (call from
 matter)

Signed-off-by: Frank Audun Kvamtrø <[email protected]>

[nrfconnect] Fixed mbedtls configs selection

The updated way of handling mbedtls config file is done
correctly only for TF-M builds, but without it some of the files
are missing

Signed-off-by: Kamil Kasperczyk <[email protected]>

[nrfconnect] Disable unsupported SHELL_WILDCARD

SHELL_WILDCARD is not supported for Matter devices in the newest
Zephyr version because it selects POSIX_C_LIB_EXT, so we need to
disable it.

[nrfconnect] Enable SPI for nRF54L15DK NS build

Added nRF54L15 DK NS to configuration.

Signed-off-by: Arkadiusz Balys <[email protected]>

[nrfconnect] config: align the MCUmgr Bluetooth transport Kconfig

Aligned the MCUmgr Bluetooth transport Kconfig with the latest
changes from Zephyr.

Ref: NCSDK-29061

Signed-off-by: Kamil Piszczek <[email protected]>

[nrfconnect] Enable MLDv2 join procedure for IPv6 Multicasts

This commit updates the IPv6 multicast subscription mechanism by
explicitly using the MLDv2 join procedure. This change ensures proper
registration for multicast addresses, improving reliability in multicast
communication.

Signed-off-by: Łukasz Duda <[email protected]>

[nrfconnect] Implicitly enable PSA crypto driver for given platform

This commit makes in clear which crypto driver is enabled by default.
Additionally, stack overflow has been fixed for CC3XX variant, and
mbedTLS Heap is disabled for TF-M variant.

Signed-off-by: Łukasz Duda <[email protected]>

[nrfconnect] wifi: Fix nRF70 heap allocation

The upstream WPA supplicant uses k_heap instead of libc_heap, so,
move the heap to k_heap.

Signed-off-by: Chaitanya Tata <[email protected]>

[nrfconnect] wifi: Fix the heap allocation warning

By default nRF70 driver allocates a higher heap to handle most cases,
but as Matter doesn't use much heap, enable the ignore minimum warning
configuration.

Signed-off-by: Chaitanya Tata <[email protected]>

[nrfconnect] Increased stack size for the OpenThread with nRF54L

When using nRF54L15 the stack size required for crypto operations
by OpenThread is bigger and must be increased.

Signed-off-by: Kamil Kasperczyk <[email protected]>

[nrfconnect] Enable ZMS in nrfconnect if RRAM is in use.

Disabled NVS and enabled ZMS fs backend for all devices that
uses RRAM.

Signed-off-by: Arkadiusz Balys <[email protected]>

[nrfconnect] Increased CHIP stack size for cracen based targets

Targets using cracen crypto backend requires bigger CHIP
stack size.

Signed-off-by: Kamil Kasperczyk <[email protected]>

[nrfconnect] disable `FPROTECT` for nRF54L15

`FPROTECT` should be disabled for nRF54L15 in app to allow
correctly protecting whole region of mcuboot

Signed-off-by: Maciej Baczmanski <[email protected]>

[nrfconnect] Factory data partition location change

- factory data can be placed before or after settings partition

Signed-off-by: Konrad Grucel <[email protected]>

[nrfconnect] Added config to enable report on active mode

Introduced Kconfig option that allows to enable an ICD to send
data report on entering the active mode.

Signed-off-by: Kamil Kasperczyk <[email protected]>

[nrfconnect] Increased system workqueue size for LIT

The LIT devices seem to need bigger size of workqueue on 54L.

Signed-off-by: Kamil Kasperczyk <[email protected]>

[nrfconnect] Change `CHIP_SPI_NOR` config dependency

Set `CHIP_SPI_NOR` to y for all targets that are built
for nRF54L15DK, regardless of target SoC.

Signed-off-by: Maciej Baczmanski <[email protected]>

[nrfconnect] Disable chip_build_tools

Disable chip_build_tools

Signed-off-by: Adrian Gielniewski <[email protected]>

* [Crypto] Stop compiling legacy SPAKE2P if PSA is available

If the CHIP_CRYPTO_PSA_SPAKE2P is enabled the build system should
not compile Legacy Spake2p implementation, because the PSA one
is available in the PSASpake2p.cpp file.

* VerifyOrDie logging for constrained devices

1. Add the configuration to enable logging the location of
   a failed VerifyOrDie() without logging the condition to
   reduce the code size impact but still be able to debug
   failing VerifyOrDie() conditions.
2. Allow to override __FILE__ macro with __FILE_NAME__ by
   setting the warn_builtin_macro_redefined GN arg to false
   to further reduce the code size increase.
3. Add Kconfigs for nRF Connect platform for enabling both
   features.

Signed-off-by: Damian Krolik <[email protected]>

* Include EXTRAVERSION in Matter software version string

When a Matter application provides the VERSION file, the
Matter software version string is set to 4-number string,
such as "2.7.99+0" and the EXTRAVERSION field, which is
typically used to denote the branch or tag name, such as
"dev" or "rc1", is ignored.

If the EXTRAVERSION field is non-empty, set the Matter
software version string to a string such as "2.7.99-dev+0".

* Clear Thread Network after last fabric is removed

Dataset has to be cleared to allow commissioning to different network
when CONFIG_CHIP_LAST_FABRIC_REMOVED_ERASE_ONLY is used.

Signed-off-by: Adrian Gielniewski <[email protected]>

* [workflows] Update docker images to version 98

Update docker image version to 98.

Signed-off-by: Adrian Gielniewski <[email protected]>

* [nrfconnect] Change the recommended version to 2.9.0

Change the recommended version of nRF Connected SDK to 2.9.0.

Signed-off-by: Adrian Gielniewski <[email protected]>

* [nrfconnect] Align examples to NCS 2.9.0

Signed-off-by: Adrian Gielniewski <[email protected]>

* [nrfconnect] Fix FLASH overflow

Disable some logs in lighting-app and lock-app due to flash overflow.

Signed-off-by: Adrian Gielniewski <[email protected]>

* [nrfconnect] Align test_driver configuration to NCS 2.9.0

Signed-off-by: Adrian Gielniewski <[email protected]>

* [nrfconnect] Fix nrf builder

Use correct path when running ctest.

Signed-off-by: Adrian Gielniewski <[email protected]>

* [nrfconnect] Disable native build

Disable Zephyr native build until next release due to Zephyr regression.

Signed-off-by: Adrian Gielniewski <[email protected]>

---------

Signed-off-by: Arkadiusz Balys <[email protected]>
Signed-off-by: Maciej Baczmanski <[email protected]>
Signed-off-by: Adrian Gielniewski <[email protected]>
Signed-off-by: Damian Krolik <[email protected]>
Co-authored-by: Arkadiusz Balys <[email protected]>
Co-authored-by: Maciej Baczmanski <[email protected]>
Co-authored-by: Kamil Kasperczyk <[email protected]>
Co-authored-by: Damian Krolik <[email protected]>
* Run dos2unix on all DM XML files in 1.4

* Add newlines at end of all DM XML files for 1.4

sed -i -e '$a\' data_model/1.4/device_types/*
sed -i -e '$a\' data_model/1.4/clusters/*

* DM XMLs: switch 1.4 DM XMLs to alchemy

* Generator updates to alchemy

* Update 1.4 using alchemy 1.5.0

* Restyled by autopep8

* Add the in-progress defines to match the 1.5 0.7 spec ballot

* Fix define processing for alchemy, add tag file

* Fix linter, add check for non-existent tag file

* Remove a leftover file - this isn't generated by alchemy

* Remove file from gni list

---------

Co-authored-by: Restyled.io <[email protected]>
* Changed Dockerfile for crosscompile image.
Now pointing to a new sysroot. Changed needed for NFC Commissioning.

* Bumped version

---------

Co-authored-by: Andrei Litvin <[email protected]>
Copy link

github-actions bot commented Feb 12, 2025

PR #37534: Size comparison from c81b3d4 to e899391

Full report (83 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
platform target config section c81b3d4 e899391 change % change
bl602 lighting-app bl602+mfd+littlefs+rpc FLASH 1095998 1095998 0 0.0
RAM 94906 94906 0 0.0
bl702 lighting-app bl702+eth FLASH 651858 651858 0 0.0
RAM 33633 33633 0 0.0
bl702+wifi FLASH 828350 828350 0 0.0
RAM 22341 22341 0 0.0
bl706+mfd+rpc+littlefs FLASH 1061752 1061752 0 0.0
RAM 32285 32285 0 0.0
bl702l contact-sensor-app bl702l+mfd+littlefs FLASH 892626 892626 0 0.0
RAM 26912 26912 0 0.0
lighting-app bl702l+mfd+littlefs FLASH 975740 975740 0 0.0
RAM 24752 24752 0 0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 FLASH 838396 838396 0 0.0
RAM 123480 123480 0 0.0
lock-ftd LP_EM_CC1354P10_6 FLASH 823816 823816 0 0.0
RAM 125360 125360 0 0.0
pump-app LP_EM_CC1354P10_6 FLASH 770984 770984 0 0.0
RAM 113820 113820 0 0.0
pump-controller-app LP_EM_CC1354P10_6 FLASH 755244 755244 0 0.0
RAM 114028 114028 0 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL FLASH 538894 538894 0 0.0
RAM 205208 205208 0 0.0
lock CC3235SF_LAUNCHXL FLASH 572758 572758 0 0.0
RAM 205360 205360 0 0.0
cyw30739 light CYW30739B2-P5-EVK-01 unknown 2040 2040 0 0.0
FLASH 679765 679765 0 0.0
RAM 78548 78548 0 0.0
CYW30739B2-P5-EVK-02 unknown 2040 2040 0 0.0
FLASH 699625 699625 0 0.0
RAM 81188 81188 0 0.0
CYW30739B2-P5-EVK-03 unknown 2040 2040 0 0.0
FLASH 699625 699625 0 0.0
RAM 81188 81188 0 0.0
CYW930739M2EVB-02 unknown 2040 2040 0 0.0
FLASH 656549 656549 0 0.0
RAM 73616 73616 0 0.0
light-switch CYW30739B2-P5-EVK-01 unknown 2040 2040 0 0.0
FLASH 616101 616101 0 0.0
RAM 71532 71532 0 0.0
CYW30739B2-P5-EVK-02 unknown 2040 2040 0 0.0
FLASH 635745 635745 0 0.0
RAM 74076 74076 0 0.0
CYW30739B2-P5-EVK-03 unknown 2040 2040 0 0.0
FLASH 635745 635745 0 0.0
RAM 74076 74076 0 0.0
lock CYW30739B2-P5-EVK-01 unknown 2040 2040 0 0.0
FLASH 635613 635613 0 0.0
RAM 74540 74540 0 0.0
CYW30739B2-P5-EVK-02 unknown 2040 2040 0 0.0
FLASH 655329 655329 0 0.0
RAM 77084 77084 0 0.0
CYW30739B2-P5-EVK-03 unknown 2040 2040 0 0.0
FLASH 655329 655329 0 0.0
RAM 77084 77084 0 0.0
thermostat CYW30739B2-P5-EVK-01 unknown 2040 2040 0 0.0
FLASH 611953 611953 0 0.0
RAM 68628 68628 0 0.0
CYW30739B2-P5-EVK-02 unknown 2040 2040 0 0.0
FLASH 631813 631813 0 0.0
RAM 71268 71268 0 0.0
CYW30739B2-P5-EVK-03 unknown 2040 2040 0 0.0
FLASH 631813 631813 0 0.0
RAM 71268 71268 0 0.0
efr32 lock-app BRD4187C FLASH 937088 937088 0 0.0
RAM 159904 159904 0 0.0
BRD4338a FLASH 730340 730340 0 0.0
RAM 234716 234716 0 0.0
window-app BRD4187C FLASH 1029648 1029648 0 0.0
RAM 128008 128008 0 0.0
esp32 all-clusters-app c3devkit DRAM 97312 97312 0 0.0
FLASH 1577408 1577414 6 0.0
IRAM 83820 83820 0 0.0
m5stack DRAM 116100 116100 0 0.0
FLASH 1545102 1545110 8 0.0
IRAM 117039 117039 0 0.0
linux air-purifier-app debug unknown 4760 4760 0 0.0
FLASH 2708611 2708611 0 0.0
RAM 132784 132784 0 0.0
all-clusters-app debug unknown 5568 5568 0 0.0
FLASH 5975074 5975074 0 0.0
RAM 531600 531600 0 0.0
all-clusters-minimal-app debug unknown 5464 5464 0 0.0
FLASH 5322586 5322586 0 0.0
RAM 242712 242712 0 0.0
bridge-app debug unknown 5480 5480 0 0.0
FLASH 4681230 4681230 0 0.0
RAM 221448 221448 0 0.0
chip-tool debug unknown 6120 6120 0 0.0
FLASH 13098792 13098792 0 0.0
RAM 596578 596578 0 0.0
chip-tool-ipv6only arm64 unknown 21816 21816 0 0.0
FLASH 11162160 11162160 0 0.0
RAM 648256 648256 0 0.0
fabric-admin debug unknown 5808 5808 0 0.0
FLASH 11387841 11387841 0 0.0
RAM 596362 596362 0 0.0
fabric-bridge-app debug unknown 4736 4736 0 0.0
FLASH 4506552 4506552 0 0.0
RAM 208632 208632 0 0.0
fabric-sync debug unknown 4976 4976 0 0.0
FLASH 5612805 5612805 0 0.0
RAM 483504 483504 0 0.0
lighting-app debug+rpc+ui unknown 6152 6152 0 0.0
FLASH 5645489 5645489 0 0.0
RAM 231792 231792 0 0.0
lock-app debug unknown 5416 5416 0 0.0
FLASH 4730626 4730626 0 0.0
RAM 207696 207696 0 0.0
ota-provider-app debug unknown 4776 4776 0 0.0
FLASH 4359692 4359692 0 0.0
RAM 201336 201336 0 0.0
ota-requestor-app debug unknown 4728 4728 0 0.0
FLASH 4497036 4497036 0 0.0
RAM 205920 205920 0 0.0
shell debug unknown 4256 4256 0 0.0
FLASH 3005340 3005340 0 0.0
RAM 160552 160552 0 0.0
thermostat-no-ble arm64 unknown 9512 9512 0 0.0
FLASH 4096408 4096408 0 0.0
RAM 246024 246024 0 0.0
tv-app debug unknown 5744 5744 0 0.0
FLASH 5951749 5951749 0 0.0
RAM 606904 606904 0 0.0
tv-casting-app debug unknown 5320 5320 0 0.0
FLASH 11271549 11271549 0 0.0
RAM 710864 710864 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 FLASH 907452 907452 0 0.0
RAM 142411 142411 0 0.0
nrf7002dk_nrf5340_cpuapp FLASH 901932 901932 0 0.0
RAM 124755 124755 0 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 FLASH 846072 846072 0 0.0
RAM 141339 141339 0 0.0
light-switch-app nrf52840dk_nrf52840 FLASH 787908 787908 0 0.0
RAM 131402 131402 0 0.0
nrf7002dk_nrf5340_cpuapp FLASH 953500 953500 0 0.0
RAM 114116 114116 0 0.0
lighting-app nrf52840dk_nrf52840+rpc FLASH 868332 868332 0 0.0
RAM 145812 145812 0 0.0
nrf52840dongle_nrf52840 FLASH 807928 807928 0 0.0
RAM 153631 153631 0 0.0
nrf5340dk_nrf5340_cpuapp FLASH 766528 766528 0 0.0
RAM 145107 145107 0 0.0
nrf7002dk_nrf5340_cpuapp FLASH 953500 953500 0 0.0
RAM 114116 114116 0 0.0
lock-app nrf52840dk_nrf52840 FLASH 776272 776272 0 0.0
RAM 131955 131955 0 0.0
nrf5340dk_nrf5340_cpuapp FLASH 703848 703848 0 0.0
RAM 132398 132398 0 0.0
nrf7002dk_nrf5340_cpuapp FLASH 942840 942840 0 0.0
RAM 114669 114669 0 0.0
pump-app nrf52840dk_nrf52840 FLASH 756184 756184 0 0.0
RAM 130732 130732 0 0.0
pump-controller-app nrf52840dk_nrf52840 FLASH 741820 741820 0 0.0
RAM 130491 130491 0 0.0
nxp contact k32w0+release FLASH 584744 584744 0 0.0
RAM 70876 70876 0 0.0
mcxw71+release FLASH 600184 600184 0 0.0
RAM 63096 63096 0 0.0
light k32w0+release FLASH 611052 611052 0 0.0
RAM 70268 70268 0 0.0
k32w1+release FLASH 685504 685504 0 0.0
RAM 48680 48680 0 0.0
lock mcxw71+release FLASH 749008 749008 0 0.0
RAM 67500 67500 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 FLASH 1646732 1646732 0 0.0
RAM 211576 211576 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 FLASH 1553500 1553500 0 0.0
RAM 208392 208392 0 0.0
light cy8ckit_062s2_43012 FLASH 1469428 1469428 0 0.0
RAM 200368 200368 0 0.0
lock cy8ckit_062s2_43012 FLASH 1467364 1467364 0 0.0
RAM 224704 224704 0 0.0
qpg lighting-app qpg6105+debug FLASH 662324 662324 0 0.0
RAM 105220 105220 0 0.0
lock-app qpg6105+debug FLASH 620112 620112 0 0.0
RAM 99664 99664 0 0.0
stm32 light STM32WB5MM-DK FLASH 482992 482992 0 0.0
RAM 144688 144688 0 0.0
telink bridge-app tl7218x FLASH 665214 665214 0 0.0
RAM 90828 90828 0 0.0
contact-sensor-app tlsr9528a_retention FLASH 621896 621896 0 0.0
RAM 31488 31488 0 0.0
light-app-ota-shell-factory-data tl3218x FLASH 770882 770882 0 0.0
RAM 43568 43568 0 0.0
tl7218x FLASH 779352 779352 0 0.0
RAM 100752 100752 0 0.0
light-switch-app-ota-compress-lzma-factory-data tl7218x_retention FLASH 680666 680666 0 0.0
RAM 52192 52192 0 0.0
light-switch-app-ota-compress-lzma-shell-factory-data tlsr9528a FLASH 709228 709228 0 0.0
RAM 73400 73400 0 0.0
lighting-app-ota-factory-data tlsr9118bdk40d FLASH 626174 626174 0 0.0
RAM 142032 142032 0 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d FLASH 814004 814004 0 0.0
RAM 99608 99608 0 0.0
tizen all-clusters-app arm unknown 5104 5104 0 0.0
FLASH 1751644 1751644 0 0.0
RAM 93508 93508 0 0.0
chip-tool-ubsan arm unknown 11396 11396 0 0.0
FLASH 18683046 18683046 0 0.0
RAM 8181084 8181084 0 0.0

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