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

[K32W0] SDK 2.6.13 changes #30678

Merged
merged 30 commits into from
Dec 11, 2023
Merged

Conversation

marius-alex-tache
Copy link
Contributor

Changelog:

  • Add support for OTA encryption.
  • Add support for simple hash verification, a less secure alternative to secure boot.
  • Add support for SSBL versioning. Version can be accessed and logged at application level.
  • Add mechanism for exposing BLE events to the application.
  • Add support for ICD for contact sensor reference app.
  • Update factory data generator script.
  • Fix an AES related bug during OTA.
  • Other fixes and README updates.

Signed-off-by: Axel Le Bourhis [email protected]
Signed-off-by: Ethan Tan [email protected]
Signed-off-by: marius-alex-tache [email protected]

@CLAassistant
Copy link

CLAassistant commented Nov 28, 2023

CLA assistant check
All committers have signed the CLA.

@github-actions github-actions bot added documentation Improvements or additions to documentation examples scripts platform labels Nov 28, 2023
Copy link

github-actions bot commented Nov 28, 2023

PR #30678: Size comparison from 8f76c06 to 4f195cf

Full report (13 builds for cc13x4_26x4, cc32xx, mbed, nrfconnect, qpg)
platform target config section 8f76c06 4f195cf change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 740195 740195 0 0.0
(read/write) 167064 167064 0 0.0
.bss 89476 89476 0 0.0
.data 3424 3424 0 0.0
.rodata 84607 84607 0 0.0
.text 655200 655200 0 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 757555 757555 0 0.0
(read/write) 177244 177244 0 0.0
.bss 99612 99612 0 0.0
.data 3444 3444 0 0.0
.rodata 79695 79695 0 0.0
.text 677468 677468 0 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 744507 744507 0 0.0
(read/write) 171692 171692 0 0.0
.bss 94060 94060 0 0.0
.data 3444 3444 0 0.0
.rodata 105455 105455 0 0.0
.text 638664 638664 0 0.0
pump-app LP_EM_CC1354P10_6 (read only) 698555 698555 0 0.0
(read/write) 166100 166100 0 0.0
.bss 88280 88280 0 0.0
.data 3412 3412 0 0.0
.rodata 80383 80383 0 0.0
.text 617784 617784 0 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 684203 684203 0 0.0
(read/write) 166240 166240 0 0.0
.bss 88432 88432 0 0.0
.data 3408 3408 0 0.0
.rodata 76215 76215 0 0.0
.text 607600 607600 0 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 565066 565066 0 0.0
(read/write) 207520 207520 0 0.0
.bss 200980 200980 0 0.0
.data 1416 1416 0 0.0
.rodata 83858 83858 0 0.0
.text 479088 479088 0 0.0
lock CC3235SF_LAUNCHXL (read only) 617922 617922 0 0.0
(read/write) 207860 207860 0 0.0
.bss 201296 201296 0 0.0
.data 1444 1444 0 0.0
.rodata 105730 105730 0 0.0
.text 510072 510072 0 0.0
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2523816 2523816 0 0.0
.bss 220032 220032 0 0.0
.data 5136 5136 0 0.0
.text 1486500 1486500 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1057996 1057996 0 0.0
bss 128917 128917 0 0.0
rodata 104140 104140 0 0.0
text 777288 777288 0 0.0
nrf7002dk_nrf5340_cpuapp (read only) 4 4 0 0.0
(read/write) 1185168 1185168 0 0.0
bss 121139 121139 0 0.0
rodata 138400 138400 0 0.0
text 775304 775304 0 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1043132 1043132 0 0.0
bss 129204 129204 0 0.0
rodata 99316 99316 0 0.0
text 766960 766960 0 0.0
qpg lighting-app qpg6105+debug (read/write) 1114400 1114400 0 0.0
.bss 101152 101152 0 0.0
.data 748 748 0 0.0
.text 626776 626776 0 0.0
lock-app qpg6105+debug (read/write) 1075748 1075748 0 0.0
.bss 95920 95920 0 0.0
.data 780 780 0 0.0
.text 588124 588124 0 0.0

marius-alex-tache and others added 25 commits December 11, 2023 11:18
Signed-off-by: marius-alex-tache <[email protected]>
* Add valid_from and lifetime optional parameters
* Updated parameters descriptions
* Misc improvements

Signed-off-by: Axel Le Bourhis <[email protected]>
Updated the document to make use of the new generate_certs.py script.

Signed-off-by: Axel Le Bourhis <[email protected]>
Signed-off-by: marius-alex-tache <[email protected]>
When adding app BLE callbacks, the sImplInstance pointer is used, so it
needs to be set beforehand.

Signed-off-by: marius-alex-tache <[email protected]>
Signed-off-by: marius-alex-tache <[email protected]>
Signed-off-by: marius-alex-tache <[email protected]>
Restyled by clang-format
Restyled by gn
Restyled by prettier-markdown
Restyled by autopep8
Restyled by isort
Signed-off-by: marius-alex-tache <[email protected]>
Signed-off-by: marius-alex-tache <[email protected]>
Signed-off-by: marius-alex-tache <[email protected]>
… use a more generic path

Signed-off-by: marius-alex-tache <[email protected]>
Copy link

github-actions bot commented Dec 11, 2023

PR #30678: Size comparison from 2980e51 to b94a6f1

Increases above 0.2%:

platform target config section 2980e51 b94a6f1 change % change
k32w contact k32w0+release (read only) 594848 604696 9848 1.7
.data 2128 2168 40 1.9
.text 594312 604160 9848 1.7
lock k32w0+release (read only) 565936 575752 9816 1.7
.data 2056 2096 40 1.9
.text 565400 575216 9816 1.7
Increases (4 builds for k32w)
platform target config section 2980e51 b94a6f1 change % change
k32w contact k32w0+release (read only) 594848 604696 9848 1.7
.data 2128 2168 40 1.9
.text 594312 604160 9848 1.7
light k32w0+release (read only) 594544 594592 48 0.0
.data 2116 2120 4 0.2
.text 594008 594056 48 0.0
k32w1+release .bss 77252 77260 8 0.0
lock k32w0+release (read only) 565936 575752 9816 1.7
.data 2056 2096 40 1.9
.text 565400 575216 9816 1.7
Decreases (6 builds for efr32, k32w)
platform target config section 2980e51 b94a6f1 change % change
efr32 lock-app BRD4161A+wf200 (read/write) 1114160 1114152 -8 -0.0
.text 922804 922796 -8 -0.0
k32w contact k32w0+release (read/write) 88128 81720 -6408 -7.3
.bss 71376 69568 -1808 -2.5
k32w1+release (read/write) 690472 690408 -64 -0.0
.text 576696 576632 -64 -0.0
light k32w0+release (read/write) 87804 79096 -8708 -9.9
.bss 71064 66992 -4072 -5.7
k32w1+release (read/write) 782268 782140 -128 -0.0
.text 659632 659496 -136 -0.0
lock k32w0+release (read/write) 85600 79208 -6392 -7.5
.bss 68920 67128 -1792 -2.6
Full report (72 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
platform target config section 2980e51 b94a6f1 change % change
bl602 lighting-app bl602 (read/write) 1413750 1413750 0 0.0
.bss 85160 85160 0 0.0
.data 9416 9416 0 0.0
.rodata 156892 156892 0 0.0
.text 1081640 1081640 0 0.0
bl602+mfd (read/write) 1428222 1428222 0 0.0
.bss 85328 85328 0 0.0
.data 9384 9384 0 0.0
.rodata 155852 155852 0 0.0
.text 1097004 1097004 0 0.0
bl602+rpc (read/write) 1461534 1461534 0 0.0
.bss 93192 93192 0 0.0
.data 9784 9784 0 0.0
.rodata 164516 164516 0 0.0
.text 1113384 1113384 0 0.0
bl702 lighting-app bl702 (read only) 3478 3478 0 0.0
(read/write) 1178431 1178431 0 0.0
.bss 11197 11197 0 0.0
.data 3584 3584 0 0.0
.rodata 106268 106268 0 0.0
.text 951008 951008 0 0.0
bl702+mfd (read only) 3478 3478 0 0.0
(read/write) 1189307 1189307 0 0.0
.bss 11373 11373 0 0.0
.data 3568 3568 0 0.0
.rodata 105208 105208 0 0.0
.text 962816 962816 0 0.0
bl702+rpc (read only) 3478 3478 0 0.0
(read/write) 1270447 1270447 0 0.0
.bss 19677 19677 0 0.0
.data 4144 4144 0 0.0
.rodata 121688 121688 0 0.0
.text 1026070 1026070 0 0.0
bl706-eth (read/write) 998385 998385 0 0.0
.bss 23772 23772 0 0.0
.data 3160 3160 0 0.0
.rodata 99600 99600 0 0.0
.text 744232 744232 0 0.0
bl706-wifi (read/write) 1235026 1235026 0 0.0
.bss 10641 10641 0 0.0
.data 3600 3600 0 0.0
.rodata 120580 120580 0 0.0
.text 970032 970032 0 0.0
bl702l lighting-app bl702l (read/write) 1148652 1148652 0 0.0
.bss 16392 16392 0 0.0
.data 4952 4952 0 0.0
.rodata 100272 100272 0 0.0
.text 944134 944134 0 0.0
bl702l+mfd (read only) 512 512 0 0.0
(read/write) 1159592 1159592 0 0.0
.bss 16568 16568 0 0.0
.data 4928 4928 0 0.0
.rodata 99212 99212 0 0.0
.text 956510 956510 0 0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 742236 742236 0 0.0
(read/write) 167116 167116 0 0.0
.bss 89532 89532 0 0.0
.data 3420 3420 0 0.0
.rodata 84648 84648 0 0.0
.text 657200 657200 0 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 759580 759580 0 0.0
(read/write) 177344 177344 0 0.0
.bss 99708 99708 0 0.0
.data 3448 3448 0 0.0
.rodata 79728 79728 0 0.0
.text 679460 679460 0 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 746556 746556 0 0.0
(read/write) 171800 171800 0 0.0
.bss 94164 94164 0 0.0
.data 3448 3448 0 0.0
.rodata 105504 105504 0 0.0
.text 640660 640660 0 0.0
pump-app LP_EM_CC1354P10_6 (read only) 700028 700028 0 0.0
(read/write) 166120 166120 0 0.0
.bss 88312 88312 0 0.0
.data 3408 3408 0 0.0
.rodata 80440 80440 0 0.0
.text 619200 619200 0 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 685548 685548 0 0.0
(read/write) 166292 166292 0 0.0
.bss 88488 88488 0 0.0
.data 3404 3404 0 0.0
.rodata 76280 76280 0 0.0
.text 608880 608880 0 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 566570 566570 0 0.0
(read/write) 207620 207620 0 0.0
.bss 201084 201084 0 0.0
.data 1412 1412 0 0.0
.rodata 83922 83922 0 0.0
.text 480528 480528 0 0.0
lock CC3235SF_LAUNCHXL (read only) 619874 619874 0 0.0
(read/write) 208016 208016 0 0.0
.bss 201448 201448 0 0.0
.data 1448 1448 0 0.0
.rodata 105786 105786 0 0.0
.text 511968 511968 0 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 561023 561023 0 0.0
.app_xip_area 451313 451313 0 0.0
.bss 64624 64624 0 0.0
.data 660 660 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
lock cyw930739m2evb_01 (read/write) 543263 543263 0 0.0
.app_xip_area 428817 428817 0 0.0
.bss 69320 69320 0 0.0
.data 700 700 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
ota-requestor cyw930739m2evb_01 (read/write) 562007 562007 0 0.0
.app_xip_area 453753 453753 0 0.0
.bss 63240 63240 0 0.0
.data 588 588 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
switch cyw930739m2evb_01 (read/write) 557447 557447 0 0.0
.app_xip_area 445969 445969 0 0.0
.bss 66360 66360 0 0.0
.data 696 696 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
efr32 lighting-app BRD4161A+rs9116 (read/write) 1016444 1016444 0 0.0
.bss 172568 172568 0 0.0
.data 2688 2688 0 0.0
.text 841168 841168 0 0.0
BRD4187C (read/write) 1100652 1100652 0 0.0
.bss 196172 196172 0 0.0
.data 3296 3296 0 0.0
.text 901164 901164 0 0.0
lock-app BRD4161A+wf200 (read/write) 1114160 1114152 -8 -0.0
.bss 188624 188624 0 0.0
.data 2712 2712 0 0.0
.text 922804 922796 -8 -0.0
window-app BRD4187C (read/write) 1135136 1135136 0 0.0
.bss 168204 168204 0 0.0
.data 3168 3168 0 0.0
.text 963744 963744 0 0.0
esp32 all-clusters-app c3devkit (read only) 1136076 1136076 0 0.0
(read/write) 1670548 1670548 0 0.0
.dram0.bss 72536 72536 0 0.0
.dram0.data 12988 12988 0 0.0
.flash.rodata 241152 241152 0 0.0
.flash.text 1136076 1136076 0 0.0
.iram0.text 75694 75694 0 0.0
m5stack (read only) 1181371 1181371 0 0.0
(read/write) 519744 519744 0 0.0
.dram0.bss 79192 79192 0 0.0
.dram0.data 34004 34004 0 0.0
.flash.rodata 272184 272184 0 0.0
.flash.text 1175987 1175987 0 0.0
.iram0.text 123907 123907 0 0.0
k32w contact k32w0+release (read only) 594848 604696 9848 1.7
(read/write) 88128 81720 -6408 -7.3
.bss 71376 69568 -1808 -2.5
.data 2128 2168 40 1.9
.text 594312 604160 9848 1.7
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 690472 690408 -64 -0.0
.bss 67584 67584 0 0.0
.data 2716 2716 0 0.0
.text 576696 576632 -64 -0.0
light k32w0+release (read only) 594544 594592 48 0.0
(read/write) 87804 79096 -8708 -9.9
.bss 71064 66992 -4072 -5.7
.data 2116 2120 4 0.2
.text 594008 594056 48 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 782268 782140 -128 -0.0
.bss 77252 77260 8 0.0
.data 1928 1928 0 0.0
.text 659632 659496 -136 -0.0
lock k32w0+release (read only) 565936 575752 9816 1.7
(read/write) 85600 79208 -6392 -7.5
.bss 68920 67128 -1792 -2.6
.data 2056 2096 40 1.9
.text 565400 575216 9816 1.7
linux air-purifier-app debug (read only) 2524461 2524461 0 0.0
(read/write) 127176 127176 0 0.0
.bss 46944 46944 0 0.0
.data 1472 1472 0 0.0
.data.rel.ro 72776 72776 0 0.0
.dynamic 608 608 0 0.0
.got 4568 4568 0 0.0
.init 27 27 0 0.0
.init_array 800 800 0 0.0
.rodata 179272 179272 0 0.0
.text 2169829 2169829 0 0.0
all-clusters-app debug (read only) 5368457 5368457 0 0.0
(read/write) 449600 449600 0 0.0
.bss 130064 130064 0 0.0
.data 3840 3840 0 0.0
.data.rel.ro 308472 308472 0 0.0
.dynamic 624 624 0 0.0
.got 5352 5352 0 0.0
.init 27 27 0 0.0
.init_array 1224 1224 0 0.0
.rodata 308476 308476 0 0.0
.text 4654963 4654963 0 0.0
all-clusters-minimal-app debug (read only) 4951465 4951465 0 0.0
(read/write) 234656 234656 0 0.0
.bss 127856 127856 0 0.0
.data 3776 3776 0 0.0
.data.rel.ro 95912 95912 0 0.0
.dynamic 624 624 0 0.0
.got 5312 5312 0 0.0
.init 27 27 0 0.0
.init_array 1160 1160 0 0.0
.rodata 272813 272813 0 0.0
.text 4446227 4446227 0 0.0
bridge-app debug (read only) 4415337 4415337 0 0.0
(read/write) 215896 215896 0 0.0
.bss 119224 119224 0 0.0
.data 4704 4704 0 0.0
.data.rel.ro 85232 85232 0 0.0
.dynamic 624 624 0 0.0
.got 5280 5280 0 0.0
.init 27 27 0 0.0
.init_array 824 824 0 0.0
.rodata 219125 219125 0 0.0
.text 3977683 3977683 0 0.0
chip-tool debug (read only) 11583073 11583073 0 0.0
(read/write) 500520 500520 0 0.0
.bss 94072 94072 0 0.0
.data 4994 4994 0 0.0
.data.rel.ro 394208 394208 0 0.0
.dynamic 624 624 0 0.0
.got 5784 5784 0 0.0
.init 27 27 0 0.0
.init_array 776 776 0 0.0
.rodata 418761 418761 0 0.0
.text 10479155 10479155 0 0.0
chip-tool-ipv6only arm64 (read only) 11317072 11317072 0 0.0
(read/write) 567120 567120 0 0.0
.bss 103352 103352 0 0.0
.data 4280 4280 0 0.0
.data.rel.ro 432952 432952 0 0.0
.dynamic 512 512 0 0.0
.got 19696 19696 0 0.0
.init 24 24 0 0.0
.init_array 248 248 0 0.0
.rodata 341544 341544 0 0.0
.text 10112776 10112776 0 0.0
lighting-app debug+rpc+ui (read only) 5300913 5300913 0 0.0
(read/write) 224968 224968 0 0.0
.bss 119360 119360 0 0.0
.data 4416 4416 0 0.0
.data.rel.ro 93632 93632 0 0.0
.dynamic 672 672 0 0.0
.got 5896 5896 0 0.0
.init 27 27 0 0.0
.init_array 960 960 0 0.0
.rodata 340244 340244 0 0.0
.text 4715923 4715923 0 0.0
lock-app debug (read only) 4500433 4500433 0 0.0
(read/write) 203616 203616 0 0.0
.bss 113760 113760 0 0.0
.data 3648 3648 0 0.0
.data.rel.ro 79464 79464 0 0.0
.dynamic 624 624 0 0.0
.got 5232 5232 0 0.0
.init 27 27 0 0.0
.init_array 856 856 0 0.0
.rodata 247029 247029 0 0.0
.text 4043411 4043411 0 0.0
ota-provider-app debug (read only) 4164609 4164609 0 0.0
(read/write) 192696 192696 0 0.0
.bss 113632 113632 0 0.0
.data 3904 3904 0 0.0
.data.rel.ro 69248 69248 0 0.0
.dynamic 624 624 0 0.0
.got 4544 4544 0 0.0
.init 27 27 0 0.0
.init_array 720 720 0 0.0
.rodata 201301 201301 0 0.0
.text 3771475 3771475 0 0.0
ota-requestor-app debug (read only) 4254017 4254017 0 0.0
(read/write) 196976 196976 0 0.0
.bss 114656 114656 0 0.0
.data 4176 4176 0 0.0
.data.rel.ro 72240 72240 0 0.0
.dynamic 624 624 0 0.0
.got 4480 4480 0 0.0
.init 27 27 0 0.0
.init_array 776 776 0 0.0
.rodata 205109 205109 0 0.0
.text 3852675 3852675 0 0.0
shell debug (read only) 2779153 2779153 0 0.0
(read/write) 149792 149792 0 0.0
.bss 60616 60616 0 0.0
.data 768 768 0 0.0
.data.rel.ro 82608 82608 0 0.0
.dynamic 592 592 0 0.0
.got 4104 4104 0 0.0
.init 27 27 0 0.0
.init_array 1072 1072 0 0.0
.rodata 181024 181024 0 0.0
.text 2427442 2427442 0 0.0
thermostat-no-ble arm64 (read only) 4404032 4404032 0 0.0
(read/write) 246440 246440 0 0.0
.bss 122232 122232 0 0.0
.data 2784 2784 0 0.0
.data.rel.ro 102312 102312 0 0.0
.dynamic 512 512 0 0.0
.got 12008 12008 0 0.0
.init 24 24 0 0.0
.init_array 424 424 0 0.0
.rodata 162316 162316 0 0.0
.text 3901400 3901400 0 0.0
tv-app debug (read only) 5382761 5382761 0 0.0
(read/write) 348896 348896 0 0.0
.bss 244384 244384 0 0.0
.data 4992 4992 0 0.0
.data.rel.ro 92216 92216 0 0.0
.dynamic 624 624 0 0.0
.got 5520 5520 0 0.0
.init 27 27 0 0.0
.init_array 1144 1144 0 0.0
.rodata 272853 272853 0 0.0
.text 4872099 4872099 0 0.0
tv-casting-app debug (read only) 9494281 9494281 0 0.0
(read/write) 337336 337336 0 0.0
.bss 156192 156192 0 0.0
.data 2464 2464 0 0.0
.data.rel.ro 171832 171832 0 0.0
.dynamic 624 624 0 0.0
.got 5064 5064 0 0.0
.init 27 27 0 0.0
.init_array 1136 1136 0 0.0
.rodata 359976 359976 0 0.0
.text 8672611 8672611 0 0.0
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2525848 2525848 0 0.0
.bss 220184 220184 0 0.0
.data 5144 5144 0 0.0
.text 1488532 1488532 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1060828 1060828 0 0.0
bss 129029 129029 0 0.0
rodata 104172 104172 0 0.0
text 779952 779952 0 0.0
nrf7002dk_nrf5340_cpuapp (read only) 4 4 0 0.0
(read/write) 1187384 1187384 0 0.0
bss 121239 121239 0 0.0
rodata 138300 138300 0 0.0
text 777516 777516 0 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1046456 1046456 0 0.0
bss 129316 129316 0 0.0
rodata 99432 99432 0 0.0
text 770040 770040 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read only) 836224 836224 0 0.0
(read/write) 1741140 1741140 0 0.0
.bss 194644 194644 0 0.0
.data 2472 2472 0 0.0
.text 1535636 1535636 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read only) 837944 837944 0 0.0
(read/write) 1705444 1705444 0 0.0
.bss 192924 192924 0 0.0
.data 2472 2472 0 0.0
.text 1501660 1501660 0 0.0
light cy8ckit_062s2_43012 (read only) 844632 844632 0 0.0
(read/write) 1630404 1630404 0 0.0
.bss 186348 186348 0 0.0
.data 2360 2360 0 0.0
.text 1433308 1433308 0 0.0
lock cy8ckit_062s2_43012 (read only) 817512 817512 0 0.0
(read/write) 1657316 1657316 0 0.0
.bss 213444 213444 0 0.0
.data 2384 2384 0 0.0
.text 1433100 1433100 0 0.0
qpg lighting-app qpg6105+debug (read/write) 1116380 1116380 0 0.0
.bss 101200 101200 0 0.0
.data 740 740 0 0.0
.text 628756 628756 0 0.0
lock-app qpg6105+debug (read/write) 1080148 1080148 0 0.0
.bss 97336 97336 0 0.0
.data 784 784 0 0.0
.text 592528 592528 0 0.0
telink air-quality-sensor-app tlsr9528a_retention (read only) 51774 51774 0 0.0
(read/write) 820150 820150 0 0.0
bss 54904 54904 0 0.0
text 612826 612826 0 0.0
all-clusters-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1077876 1077876 0 0.0
bss 100072 100072 0 0.0
text 760598 760598 0 0.0
all-clusters-minimal-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 1083112 1083112 0 0.0
bss 109764 109764 0 0.0
text 752608 752608 0 0.0
bridge-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 933872 933872 0 0.0
bss 94272 94272 0 0.0
text 646156 646156 0 0.0
contact-sensor-app tlsr9528a_retention (read only) 51774 51774 0 0.0
(read/write) 820354 820354 0 0.0
bss 54948 54948 0 0.0
text 613172 613172 0 0.0
light-switch-app-ota-shell-factory-data tlsr9528a (read only) 4 4 0 0.0
(read/write) 977392 977392 0 0.0
bss 78932 78932 0 0.0
text 693212 693212 0 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1092148 1092148 0 0.0
bss 99836 99836 0 0.0
text 768976 768976 0 0.0
lock-app-dfu tlsr9528a (read only) 4 4 0 0.0
(read/write) 963628 963628 0 0.0
bss 97196 97196 0 0.0
text 646866 646866 0 0.0
ota-requestor-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 947532 947532 0 0.0
bss 92380 92380 0 0.0
text 662246 662246 0 0.0
pump-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 879136 879136 0 0.0
bss 68924 68924 0 0.0
text 621162 621162 0 0.0
pump-controller-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 819748 819748 0 0.0
bss 57160 57160 0 0.0
text 588038 588038 0 0.0
shell tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 705416 705416 0 0.0
bss 73588 73588 0 0.0
text 461916 461916 0 0.0
smoke_co_alarm-app tlsr9528a_retention (read only) 51774 51774 0 0.0
(read/write) 822074 822074 0 0.0
bss 55084 55084 0 0.0
text 615902 615902 0 0.0
temperature-measurement-app-mars-ota tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 876849 876849 0 0.0
bss 60636 60636 0 0.0
text 629786 629786 0 0.0
thermostat tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 844088 844088 0 0.0
bss 57456 57456 0 0.0
text 606474 606474 0 0.0
window-covering tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 838404 838404 0 0.0
bss 57808 57808 0 0.0
text 600550 600550 0 0.0

@andy31415 andy31415 merged commit 8bc4d7d into project-chip:master Dec 11, 2023
59 of 60 checks passed
@marius-alex-tache marius-alex-tache deleted the upstream-k32w0-2.6.13 branch October 1, 2024 14:05
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.

7 participants