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

Implement FeatureMap in Software & Ethernet Diagnostics Clusters #12084

Merged
merged 2 commits into from
Nov 23, 2021
Merged

Implement FeatureMap in Software & Ethernet Diagnostics Clusters #12084

merged 2 commits into from
Nov 23, 2021

Conversation

yufengwangca
Copy link
Contributor

Problem

What is being fixed? Examples:

  • Missing FeatureMap feature in Software and Ethernet Diagnostics Clusters to allow the client discovery what commands/attributes have been implemented.

Change overview

Implement FeatureMap in Software & Ethernet Diagnostics Clusters

Testing

How was this tested? (at least one bullet point required)

yufengw@yufengw-SEi:~/connectedhomeip/out/debug/standalone$ ./chip-tool softwarediagnostics read feature-map 12344321 0
....
[1637566442.747597][277654:277659] CHIP:DMG: ReportDataMessage =
[1637566442.747602][277654:277659] CHIP:DMG: {
[1637566442.747605][277654:277659] CHIP:DMG: 	AttributeReportIBs =
[1637566442.747609][277654:277659] CHIP:DMG: 	[
[1637566442.747614][277654:277659] CHIP:DMG: 		AttributeReportIB =
[1637566442.747619][277654:277659] CHIP:DMG: 		{
[1637566442.747623][277654:277659] CHIP:DMG: 			AttributeDataIB =
[1637566442.747628][277654:277659] CHIP:DMG: 			{
[1637566442.747634][277654:277659] CHIP:DMG: 				AttributePathIB =
[1637566442.747640][277654:277659] CHIP:DMG: 				{
[1637566442.747644][277654:277659] CHIP:DMG: 					Endpoint = 0x0,
[1637566442.747649][277654:277659] CHIP:DMG: 					Cluster = 0x34,
[1637566442.747654][277654:277659] CHIP:DMG: 					Attribute = 0x0000_FFFC,
[1637566442.747658][277654:277659] CHIP:DMG: 				}
[1637566442.747663][277654:277659] CHIP:DMG: 					
[1637566442.747668][277654:277659] CHIP:DMG: 					Data = 1, 
[1637566442.747672][277654:277659] CHIP:DMG: 				DataVersion = 0x0,
[1637566442.747676][277654:277659] CHIP:DMG: 			},
[1637566442.747681][277654:277659] CHIP:DMG: 			
[1637566442.747685][277654:277659] CHIP:DMG: 		},
[1637566442.747690][277654:277659] CHIP:DMG: 		
[1637566442.747693][277654:277659] CHIP:DMG: 	],
[1637566442.747698][277654:277659] CHIP:DMG: 	
[1637566442.747701][277654:277659] CHIP:DMG: }
[1637566442.747719][277654:277659] CHIP:ZCL: ReadAttributesResponse:
[1637566442.747722][277654:277659] CHIP:ZCL:   ClusterId: 0x0000_0034
[1637566442.747727][277654:277659] CHIP:ZCL:   attributeId: 0x0000_FFFC
[1637566442.747730][277654:277659] CHIP:ZCL:   status: Success                (0x0000)
[1637566442.747734][277654:277659] CHIP:ZCL:   attribute TLV Type: 0x04
[1637566442.747737][277654:277659] CHIP:TOO: Int32u attribute Response: 1

yufengw@yufengw-SEi:~/connectedhomeip/out/debug/standalone$ ./chip-tool ethernetnetworkdiagnostics read feature-map 12344321 0
.....
[1637566482.741371][277663:277668] CHIP:DMG: ReportDataMessage =
[1637566482.741376][277663:277668] CHIP:DMG: {
[1637566482.741380][277663:277668] CHIP:DMG: 	AttributeReportIBs =
[1637566482.741385][277663:277668] CHIP:DMG: 	[
[1637566482.741390][277663:277668] CHIP:DMG: 		AttributeReportIB =
[1637566482.741395][277663:277668] CHIP:DMG: 		{
[1637566482.741399][277663:277668] CHIP:DMG: 			AttributeDataIB =
[1637566482.741405][277663:277668] CHIP:DMG: 			{
[1637566482.741410][277663:277668] CHIP:DMG: 				AttributePathIB =
[1637566482.741415][277663:277668] CHIP:DMG: 				{
[1637566482.741420][277663:277668] CHIP:DMG: 					Endpoint = 0x0,
[1637566482.741425][277663:277668] CHIP:DMG: 					Cluster = 0x37,
[1637566482.741430][277663:277668] CHIP:DMG: 					Attribute = 0x0000_FFFC,
[1637566482.741437][277663:277668] CHIP:DMG: 				}
[1637566482.741443][277663:277668] CHIP:DMG: 					
[1637566482.741450][277663:277668] CHIP:DMG: 					Data = 3, 
[1637566482.741455][277663:277668] CHIP:DMG: 				DataVersion = 0x0,
[1637566482.741460][277663:277668] CHIP:DMG: 			},
[1637566482.741466][277663:277668] CHIP:DMG: 			
[1637566482.741471][277663:277668] CHIP:DMG: 		},
[1637566482.741477][277663:277668] CHIP:DMG: 		
[1637566482.741481][277663:277668] CHIP:DMG: 	],
[1637566482.741487][277663:277668] CHIP:DMG: 	
[1637566482.741491][277663:277668] CHIP:DMG: }
[1637566482.741513][277663:277668] CHIP:ZCL: ReadAttributesResponse:
[1637566482.741516][277663:277668] CHIP:ZCL:   ClusterId: 0x0000_0037
[1637566482.741522][277663:277668] CHIP:ZCL:   attributeId: 0x0000_FFFC
[1637566482.741526][277663:277668] CHIP:ZCL:   status: Success                (0x0000)
[1637566482.741530][277663:277668] CHIP:ZCL:   attribute TLV Type: 0x04
[1637566482.741534][277663:277668] CHIP:TOO: Int32u attribute Response: 3

@github-actions
Copy link

github-actions bot commented Nov 22, 2021

PR #12084: Size comparison from aa8a6d0 to d27c77d

Increases (29 builds for efr32, esp32, k32w, linux, mbed, nrfconnect, p6, qpg, telink)
platform target config section aa8a6d0 d27c77d change % change
efr32 lighting-app BRD4161A (read only) 750736 750776 40 0.0
(read/write) 119692 119700 8 0.0
.bss 117892 117900 8 0.0
.text 750728 750768 40 0.0
BRD4161A+rpc (read only) 738276 738316 40 0.0
(read/write) 136320 136328 8 0.0
.bss 134396 134404 8 0.0
.text 738268 738308 40 0.0
lock-app BRD4161A (read only) 727808 727848 40 0.0
(read/write) 113380 113388 8 0.0
.bss 111620 111628 8 0.0
.text 727800 727840 40 0.0
window-app BRD4161A (read only) 728792 728832 40 0.0
(read/write) 113700 113708 8 0.0
.bss 111940 111948 8 0.0
.text 728784 728824 40 0.0
esp32 all-clusters-app c3devkit (read/write) 1221938 1221978 40 0.0
.dram0.bss 57752 57760 8 0.0
.flash.rodata 164840 164880 40 0.0
m5stack (read/write) 421232 421280 48 0.0
.dram0.bss 63112 63120 8 0.0
.flash.rodata 192784 192824 40 0.0
k32w lighting-app k32w061+se05x+release (read/write) 707528 707576 48 0.0
.bss 77212 77220 8 0.0
.text 622604 622644 40 0.0
lock-app k32w061+debug (read/write) 598960 599008 48 0.0
.bss 67716 67724 8 0.0
.text 523564 523604 40 0.0
shell k32w061+debug (read/write) 664336 664384 48 0.0
.bss 78876 78884 8 0.0
.text 577812 577852 40 0.0
linux all-clusters-app debug (read only) 1746601 1746649 48 0.0
(read/write) 128392 128424 32 0.0
.data.rel.ro 63504 63536 32 0.1
bridge-app debug+rpc (read only) 1326413 1326461 48 0.0
(read/write) 76432 76464 32 0.0
.data.rel.ro 28352 28384 32 0.1
chip-tool debug (read only) 5867301 5869557 2256 0.0
(read/write) 195496 195688 192 0.1
.data.rel.ro 147872 148080 208 0.1
.text 5210149 5212021 1872 0.0
lighting-app debug+rpc (read only) 1595521 1595601 80 0.0
(read/write) 109616 109712 96 0.1
.bss 47152 47184 32 0.1
.data.rel.ro 55920 55984 64 0.1
.rodata 129937 129969 32 0.0
tv-app debug (read only) 1888137 1888185 48 0.0
(read/write) 318520 318584 64 0.0
.bss 249800 249832 32 0.0
.data.rel.ro 60264 60296 32 0.1
mbed all-clusters-app CY8CPROTO_062_4343W+release (read/write) 2290256 2290296 40 0.0
.bss 180308 180316 8 0.0
.text 1252856 1252896 40 0.0
lighting-app CY8CPROTO_062_4343W+release (read/write) 2274384 2274424 40 0.0
.bss 172204 172212 8 0.0
.text 1236984 1237024 40 0.0
lock-app CY8CPROTO_062_4343W+release (read/write) 2250224 2250264 40 0.0
.bss 171092 171100 8 0.0
.text 1212824 1212864 40 0.0
nrfconnect lighting-app nrf52840dk_nrf52840 (read/write) 865267 865307 40 0.0
bss 110604 110612 8 0.0
rodata 95828 95868 40 0.0
nrf52840dk_nrf52840+rpc (read/write) 827635 827675 40 0.0
bss 106960 106968 8 0.0
rodata 87012 87052 40 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 790306 790346 40 0.0
bss 111980 111988 8 0.0
rodata 91084 91124 40 0.0
lock-app nrf52840dk_nrf52840 (read/write) 840651 840723 72 0.0
bss 109628 109636 8 0.0
rodata 92300 92340 40 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 765954 766026 72 0.0
bss 111040 111048 8 0.0
rodata 87604 87644 40 0.0
pump-app nrf52840dk_nrf52840 (read/write) 846791 846831 40 0.0
bss 109768 109776 8 0.0
rodata 94008 94048 40 0.0
pump-controller-app nrf52840dk_nrf52840 (read/write) 840351 840423 72 0.0
bss 109664 109672 8 0.0
rodata 92256 92296 40 0.0
p6 all-clusters-app default (read/write) 2303032 2303072 40 0.0
.bss 113280 113288 8 0.0
.text 1261296 1261336 40 0.0
lock-app default (read/write) 2216232 2216272 40 0.0
.bss 100944 100952 8 0.0
.text 1174496 1174536 40 0.0
qpg lighting-app qpg6100+debug (read only) 494312 494352 40 0.0
.bss 50256 50264 8 0.0
.text 488992 489032 40 0.0
lock-app qpg6100+debug (read only) 469268 469308 40 0.0
.bss 49200 49208 8 0.0
.text 463948 463988 40 0.0
telink lighting-app tlsr9518adk80d (read/write) 768682 768738 56 0.0
bss 79116 79124 8 0.0
Decreases (5 builds for mbed, p6)
platform target config section aa8a6d0 d27c77d change % change
mbed all-clusters-app CY8CPROTO_062_4343W+release .heap 850912 850904 -8 -0.0
lighting-app CY8CPROTO_062_4343W+release .heap 858664 858656 -8 -0.0
lock-app CY8CPROTO_062_4343W+release .heap 859784 859776 -8 -0.0
p6 all-clusters-app default .heap 917536 917528 -8 -0.0
lock-app default .heap 930000 929992 -8 -0.0
Full report (38 builds for efr32, esp32, k32w, linux, mbed, nrfconnect, p6, qpg, telink)
platform target config section aa8a6d0 d27c77d change % change
efr32 lighting-app BRD4161A (read only) 750736 750776 40 0.0
(read/write) 119692 119700 8 0.0
.bss 117892 117900 8 0.0
.data 1800 1800 0 0.0
.text 750728 750768 40 0.0
BRD4161A+rpc (read only) 738276 738316 40 0.0
(read/write) 136320 136328 8 0.0
.bss 134396 134404 8 0.0
.data 1924 1924 0 0.0
.text 738268 738308 40 0.0
lock-app BRD4161A (read only) 727808 727848 40 0.0
(read/write) 113380 113388 8 0.0
.bss 111620 111628 8 0.0
.data 1756 1756 0 0.0
.text 727800 727840 40 0.0
window-app BRD4161A (read only) 728792 728832 40 0.0
(read/write) 113700 113708 8 0.0
.bss 111940 111948 8 0.0
.data 1760 1760 0 0.0
.text 728784 728824 40 0.0
esp32 all-clusters-app c3devkit (read only) 833410 833410 0 0.0
(read/write) 1221938 1221978 40 0.0
.dram0.bss 57752 57760 8 0.0
.dram0.data 14092 14092 0 0.0
.flash.rodata 164840 164880 40 0.0
.flash.text 833410 833410 0 0.0
.iram0.text 61394 61394 0 0.0
m5stack (read only) 904403 904403 0 0.0
(read/write) 421232 421280 48 0.0
.dram0.bss 63112 63120 8 0.0
.dram0.data 34056 34056 0 0.0
.flash.rodata 192784 192824 40 0.0
.flash.text 899019 899019 0 0.0
.iram0.text 122943 122943 0 0.0
k32w lighting-app k32w061+se05x+release (read/write) 707528 707576 48 0.0
.bss 77212 77220 8 0.0
.data 1912 1912 0 0.0
.text 622604 622644 40 0.0
lock-app k32w061+debug (read/write) 598960 599008 48 0.0
.bss 67716 67724 8 0.0
.data 1880 1880 0 0.0
.text 523564 523604 40 0.0
shell k32w061+debug (read/write) 664336 664384 48 0.0
.bss 78876 78884 8 0.0
.data 1848 1848 0 0.0
.text 577812 577852 40 0.0
linux all-clusters-app debug (read only) 1746601 1746649 48 0.0
(read/write) 128392 128424 32 0.0
.bss 58544 58544 0 0.0
.data 1042 1042 0 0.0
.data.rel.ro 63504 63536 32 0.1
.dynamic 592 592 0 0.0
.got 4112 4112 0 0.0
.init 27 27 0 0.0
.init_array 560 560 0 0.0
.rodata 137781 137781 0 0.0
.text 1473186 1473186 0 0.0
bridge-app debug+rpc (read only) 1326413 1326461 48 0.0
(read/write) 76432 76464 32 0.0
.bss 41520 41520 0 0.0
.data 1568 1568 0 0.0
.data.rel.ro 28352 28384 32 0.1
.dynamic 592 592 0 0.0
.got 3984 3984 0 0.0
.init 27 27 0 0.0
.init_array 408 408 0 0.0
.rodata 112316 112316 0 0.0
.text 1116693 1116693 0 0.0
chip-tool debug (read only) 5867301 5869557 2256 0.0
(read/write) 195496 195688 192 0.1
.bss 39848 39848 0 0.0
.data 2272 2272 0 0.0
.data.rel.ro 147872 148080 208 0.1
.dynamic 592 592 0 0.0
.got 4416 4416 0 0.0
.init 27 27 0 0.0
.init_array 472 472 0 0.0
.rodata 278122 278122 0 0.0
.text 5210149 5212021 1872 0.0
lighting-app debug+rpc (read only) 1595521 1595601 80 0.0
(read/write) 109616 109712 96 0.1
.bss 47152 47184 32 0.1
.data 1234 1234 0 0.0
.data.rel.ro 55920 55984 64 0.1
.dynamic 608 608 0 0.0
.got 4136 4136 0 0.0
.init 27 27 0 0.0
.init_array 536 536 0 0.0
.rodata 129937 129969 32 0.0
.text 1330578 1330578 0 0.0
ota-provider-app debug (read only) 1273961 1273961 0 0.0
(read/write) 75048 75048 0 0.0
.bss 44096 44096 0 0.0
.data 784 784 0 0.0
.data.rel.ro 25080 25080 0 0.0
.dynamic 592 592 0 0.0
.got 4016 4016 0 0.0
.init 27 27 0 0.0
.init_array 448 448 0 0.0
.rodata 114335 114335 0 0.0
.text 1062034 1062034 0 0.0
ota-requestor-app debug (read only) 1370209 1370209 0 0.0
(read/write) 78912 78912 0 0.0
.bss 46560 46560 0 0.0
.data 848 848 0 0.0
.data.rel.ro 26408 26408 0 0.0
.dynamic 592 592 0 0.0
.got 4000 4000 0 0.0
.init 27 27 0 0.0
.init_array 472 472 0 0.0
.rodata 125736 125736 0 0.0
.text 1144098 1144098 0 0.0
shell debug (read only) 799185 799185 0 0.0
(read/write) 65832 65832 0 0.0
.bss 23336 23336 0 0.0
.data 242 242 0 0.0
.data.rel.ro 37752 37752 0 0.0
.dynamic 592 592 0 0.0
.got 3528 3528 0 0.0
.init 27 27 0 0.0
.init_array 344 344 0 0.0
.rodata 78703 78703 0 0.0
.text 616466 616466 0 0.0
tv-app debug (read only) 1888137 1888185 48 0.0
(read/write) 318520 318584 64 0.0
.bss 249800 249832 32 0.0
.data 2768 2768 0 0.0
.data.rel.ro 60264 60296 32 0.1
.dynamic 592 592 0 0.0
.got 4432 4432 0 0.0
.init 27 27 0 0.0
.init_array 616 616 0 0.0
.rodata 158629 158629 0 0.0
.text 1584066 1584066 0 0.0
mbed all-clusters-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2290256 2290296 40 0.0
.bss 180308 180316 8 0.0
.data 5224 5224 0 0.0
.heap 850912 850904 -8 -0.0
.text 1252856 1252896 40 0.0
lighting-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2274384 2274424 40 0.0
.bss 172204 172212 8 0.0
.data 5576 5576 0 0.0
.heap 858664 858656 -8 -0.0
.text 1236984 1237024 40 0.0
lock-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2250224 2250264 40 0.0
.bss 171092 171100 8 0.0
.data 5568 5568 0 0.0
.heap 859784 859776 -8 -0.0
.text 1212824 1212864 40 0.0
pigweed-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 1139744 1139744 0 0.0
.bss 11752 11752 0 0.0
.data 4368 4368 0 0.0
.heap 1020328 1020328 0 0.0
.text 103128 103128 0 0.0
shell CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2050544 2050544 0 0.0
.bss 156280 156280 0 0.0
.data 4968 4968 0 0.0
.heap 875200 875200 0 0.0
.text 1013144 1013144 0 0.0
nrfconnect lighting-app nrf52840dk_nrf52840 (read/write) 865267 865307 40 0.0
bss 110604 110612 8 0.0
rodata 95828 95868 40 0.0
text 583200 583200 0 0.0
nrf52840dk_nrf52840+rpc (read/write) 827635 827675 40 0.0
bss 106960 106968 8 0.0
rodata 87012 87052 40 0.0
text 557368 557368 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 790306 790346 40 0.0
bss 111980 111988 8 0.0
rodata 91084 91124 40 0.0
text 512672 512672 0 0.0
lock-app nrf52840dk_nrf52840 (read/write) 840651 840723 72 0.0
bss 109628 109636 8 0.0
rodata 92300 92340 40 0.0
text 563296 563296 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 765954 766026 72 0.0
bss 111040 111048 8 0.0
rodata 87604 87644 40 0.0
text 492856 492856 0 0.0
pigweed-app nrf52840dk_nrf52840 (read/write) 497327 497327 0 0.0
bss 51824 51824 0 0.0
rodata 45780 45780 0 0.0
text 339436 339436 0 0.0
pump-app nrf52840dk_nrf52840 (read/write) 846791 846831 40 0.0
bss 109768 109776 8 0.0
rodata 94008 94048 40 0.0
text 567476 567476 0 0.0
pump-controller-app nrf52840dk_nrf52840 (read/write) 840351 840423 72 0.0
bss 109664 109672 8 0.0
rodata 92256 92296 40 0.0
text 562916 562916 0 0.0
shell nrf52840dk_nrf52840 (read/write) 778003 778003 0 0.0
bss 109112 109112 0 0.0
rodata 73064 73064 0 0.0
text 521244 521244 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 693058 693058 0 0.0
bss 110096 110096 0 0.0
rodata 67708 67708 0 0.0
text 441856 441856 0 0.0
p6 all-clusters-app default (read/write) 2303032 2303072 40 0.0
.bss 113280 113288 8 0.0
.data 2528 2528 0 0.0
.heap 917536 917528 -8 -0.0
.text 1261296 1261336 40 0.0
lock-app default (read/write) 2216232 2216272 40 0.0
.bss 100944 100952 8 0.0
.data 2400 2400 0 0.0
.heap 930000 929992 -8 -0.0
.text 1174496 1174536 40 0.0
qpg lighting-app qpg6100+debug (read only) 494312 494352 40 0.0
(read/write) 114144 114144 0 0.0
.bss 50256 50264 8 0.0
.data 1008 1008 0 0.0
.text 488992 489032 40 0.0
lock-app qpg6100+debug (read only) 469268 469308 40 0.0
(read/write) 114140 114140 0 0.0
.bss 49200 49208 8 0.0
.data 964 964 0 0.0
.text 463948 463988 40 0.0
persistent-storage-app qpg6100+debug (read only) 105416 105416 0 0.0
(read/write) 114142 114142 0 0.0
.bss 8994 8994 0 0.0
.data 272 272 0 0.0
.text 100096 100096 0 0.0
telink lighting-app tlsr9518adk80d (read/write) 768682 768738 56 0.0
bss 79116 79124 8 0.0
noinit 37160 37160 0 0.0
text 533824 533824 0 0.0

@github-actions
Copy link

github-actions bot commented Nov 22, 2021

PR #12084: Size comparison from 3f2ab62 to e000380

Increases (29 builds for efr32, esp32, k32w, linux, mbed, nrfconnect, p6, qpg, telink)
platform target config section 3f2ab62 e000380 change % change
efr32 lighting-app BRD4161A (read only) 750776 750816 40 0.0
(read/write) 119692 119700 8 0.0
.bss 117892 117900 8 0.0
.text 750768 750808 40 0.0
BRD4161A+rpc (read only) 738308 738348 40 0.0
(read/write) 136320 136328 8 0.0
.bss 134396 134404 8 0.0
.text 738300 738340 40 0.0
lock-app BRD4161A (read only) 727848 727888 40 0.0
(read/write) 117476 117484 8 0.0
.bss 115716 115724 8 0.0
.text 727840 727880 40 0.0
window-app BRD4161A (read only) 731296 731336 40 0.0
(read/write) 117836 117844 8 0.0
.bss 116068 116076 8 0.0
.text 731288 731328 40 0.0
esp32 all-clusters-app c3devkit (read/write) 1221962 1222018 56 0.0
.dram0.bss 57760 57768 8 0.0
.flash.rodata 164864 164904 40 0.0
m5stack (read/write) 421256 421304 48 0.0
.dram0.bss 63112 63120 8 0.0
.flash.rodata 192808 192848 40 0.0
k32w lighting-app k32w061+se05x+release (read/write) 707564 707612 48 0.0
.bss 77212 77220 8 0.0
.text 622640 622680 40 0.0
lock-app k32w061+debug (read/write) 599004 599052 48 0.0
.bss 67724 67732 8 0.0
.text 523600 523640 40 0.0
shell k32w061+debug (read/write) 664372 664420 48 0.0
.bss 78876 78884 8 0.0
.text 577848 577888 40 0.0
linux all-clusters-app debug (read only) 1746657 1746705 48 0.0
(read/write) 128392 128456 64 0.0
.data.rel.ro 63504 63568 64 0.1
bridge-app debug+rpc (read only) 1326469 1326517 48 0.0
(read/write) 76432 76496 64 0.1
.data.rel.ro 28352 28416 64 0.2
chip-tool debug (read only) 5868429 5870701 2272 0.0
(read/write) 195560 195752 192 0.1
.data.rel.ro 147936 148144 208 0.1
.text 5211109 5212997 1888 0.0
lighting-app debug+rpc (read only) 1595577 1595657 80 0.0
(read/write) 109680 109712 32 0.0
.data.rel.ro 55952 55984 32 0.1
.rodata 129937 129969 32 0.0
tv-app debug (read only) 1888193 1888273 80 0.0
(read/write) 318520 318616 96 0.0
.bss 249800 249832 32 0.0
.data.rel.ro 60264 60328 64 0.1
.rodata 158629 158661 32 0.0
mbed all-clusters-app CY8CPROTO_062_4343W+release (read/write) 2290280 2290320 40 0.0
.bss 180316 180324 8 0.0
.text 1252880 1252920 40 0.0
lighting-app CY8CPROTO_062_4343W+release (read/write) 2274408 2274448 40 0.0
.bss 172212 172220 8 0.0
.text 1237008 1237048 40 0.0
lock-app CY8CPROTO_062_4343W+release (read/write) 2250240 2250280 40 0.0
.bss 171092 171100 8 0.0
.text 1212840 1212880 40 0.0
nrfconnect lighting-app nrf52840dk_nrf52840 (read/write) 865287 865327 40 0.0
bss 110608 110616 8 0.0
rodata 95848 95888 40 0.0
nrf52840dk_nrf52840+rpc (read/write) 827655 827695 40 0.0
bss 106964 106972 8 0.0
rodata 87032 87072 40 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 790342 790382 40 0.0
bss 111984 111992 8 0.0
rodata 91104 91144 40 0.0
lock-app nrf52840dk_nrf52840 (read/write) 840687 840759 72 0.0
bss 109632 109640 8 0.0
rodata 92320 92360 40 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 766022 766062 40 0.0
bss 111044 111052 8 0.0
rodata 87624 87664 40 0.0
pump-app nrf52840dk_nrf52840 (read/write) 846827 846867 40 0.0
bss 109772 109780 8 0.0
rodata 94028 94068 40 0.0
pump-controller-app nrf52840dk_nrf52840 (read/write) 840419 840459 40 0.0
bss 109668 109676 8 0.0
rodata 92276 92316 40 0.0
p6 all-clusters-app default (read/write) 2303072 2303112 40 0.0
.bss 113288 113296 8 0.0
.text 1261336 1261376 40 0.0
lock-app default (read/write) 2216272 2216312 40 0.0
.bss 100944 100952 8 0.0
.text 1174536 1174576 40 0.0
qpg lighting-app qpg6100+debug (read only) 494340 494380 40 0.0
.bss 50264 50272 8 0.0
.text 489020 489060 40 0.0
lock-app qpg6100+debug (read only) 469296 469336 40 0.0
.bss 49200 49208 8 0.0
.text 463976 464016 40 0.0
telink lighting-app tlsr9518adk80d (read/write) 768718 768774 56 0.0
bss 79120 79128 8 0.0
Decreases (5 builds for mbed, p6)
platform target config section 3f2ab62 e000380 change % change
mbed all-clusters-app CY8CPROTO_062_4343W+release .heap 850904 850896 -8 -0.0
lighting-app CY8CPROTO_062_4343W+release .heap 858656 858648 -8 -0.0
lock-app CY8CPROTO_062_4343W+release .heap 859784 859776 -8 -0.0
p6 all-clusters-app default .heap 917528 917520 -8 -0.0
lock-app default .heap 930000 929992 -8 -0.0
Full report (38 builds for efr32, esp32, k32w, linux, mbed, nrfconnect, p6, qpg, telink)
platform target config section 3f2ab62 e000380 change % change
efr32 lighting-app BRD4161A (read only) 750776 750816 40 0.0
(read/write) 119692 119700 8 0.0
.bss 117892 117900 8 0.0
.data 1800 1800 0 0.0
.text 750768 750808 40 0.0
BRD4161A+rpc (read only) 738308 738348 40 0.0
(read/write) 136320 136328 8 0.0
.bss 134396 134404 8 0.0
.data 1924 1924 0 0.0
.text 738300 738340 40 0.0
lock-app BRD4161A (read only) 727848 727888 40 0.0
(read/write) 117476 117484 8 0.0
.bss 115716 115724 8 0.0
.data 1756 1756 0 0.0
.text 727840 727880 40 0.0
window-app BRD4161A (read only) 731296 731336 40 0.0
(read/write) 117836 117844 8 0.0
.bss 116068 116076 8 0.0
.data 1764 1764 0 0.0
.text 731288 731328 40 0.0
esp32 all-clusters-app c3devkit (read only) 833422 833422 0 0.0
(read/write) 1221962 1222018 56 0.0
.dram0.bss 57760 57768 8 0.0
.dram0.data 14092 14092 0 0.0
.flash.rodata 164864 164904 40 0.0
.flash.text 833422 833422 0 0.0
.iram0.text 61394 61394 0 0.0
m5stack (read only) 904443 904443 0 0.0
(read/write) 421256 421304 48 0.0
.dram0.bss 63112 63120 8 0.0
.dram0.data 34056 34056 0 0.0
.flash.rodata 192808 192848 40 0.0
.flash.text 899059 899059 0 0.0
.iram0.text 122943 122943 0 0.0
k32w lighting-app k32w061+se05x+release (read/write) 707564 707612 48 0.0
.bss 77212 77220 8 0.0
.data 1912 1912 0 0.0
.text 622640 622680 40 0.0
lock-app k32w061+debug (read/write) 599004 599052 48 0.0
.bss 67724 67732 8 0.0
.data 1880 1880 0 0.0
.text 523600 523640 40 0.0
shell k32w061+debug (read/write) 664372 664420 48 0.0
.bss 78876 78884 8 0.0
.data 1848 1848 0 0.0
.text 577848 577888 40 0.0
linux all-clusters-app debug (read only) 1746657 1746705 48 0.0
(read/write) 128392 128456 64 0.0
.bss 58544 58544 0 0.0
.data 1042 1042 0 0.0
.data.rel.ro 63504 63568 64 0.1
.dynamic 592 592 0 0.0
.got 4112 4112 0 0.0
.init 27 27 0 0.0
.init_array 560 560 0 0.0
.rodata 137781 137781 0 0.0
.text 1473218 1473218 0 0.0
bridge-app debug+rpc (read only) 1326469 1326517 48 0.0
(read/write) 76432 76496 64 0.1
.bss 41520 41520 0 0.0
.data 1568 1568 0 0.0
.data.rel.ro 28352 28416 64 0.2
.dynamic 592 592 0 0.0
.got 3984 3984 0 0.0
.init 27 27 0 0.0
.init_array 408 408 0 0.0
.rodata 112316 112316 0 0.0
.text 1116725 1116725 0 0.0
chip-tool debug (read only) 5868429 5870701 2272 0.0
(read/write) 195560 195752 192 0.1
.bss 39848 39848 0 0.0
.data 2272 2272 0 0.0
.data.rel.ro 147936 148144 208 0.1
.dynamic 592 592 0 0.0
.got 4416 4416 0 0.0
.init 27 27 0 0.0
.init_array 472 472 0 0.0
.rodata 278122 278122 0 0.0
.text 5211109 5212997 1888 0.0
lighting-app debug+rpc (read only) 1595577 1595657 80 0.0
(read/write) 109680 109712 32 0.0
.bss 47184 47184 0 0.0
.data 1234 1234 0 0.0
.data.rel.ro 55952 55984 32 0.1
.dynamic 608 608 0 0.0
.got 4136 4136 0 0.0
.init 27 27 0 0.0
.init_array 536 536 0 0.0
.rodata 129937 129969 32 0.0
.text 1330610 1330610 0 0.0
ota-provider-app debug (read only) 1273993 1273993 0 0.0
(read/write) 75048 75048 0 0.0
.bss 44096 44096 0 0.0
.data 784 784 0 0.0
.data.rel.ro 25080 25080 0 0.0
.dynamic 592 592 0 0.0
.got 4016 4016 0 0.0
.init 27 27 0 0.0
.init_array 448 448 0 0.0
.rodata 114335 114335 0 0.0
.text 1062066 1062066 0 0.0
ota-requestor-app debug (read only) 1370241 1370241 0 0.0
(read/write) 78912 78912 0 0.0
.bss 46560 46560 0 0.0
.data 848 848 0 0.0
.data.rel.ro 26408 26408 0 0.0
.dynamic 592 592 0 0.0
.got 4000 4000 0 0.0
.init 27 27 0 0.0
.init_array 472 472 0 0.0
.rodata 125736 125736 0 0.0
.text 1144130 1144130 0 0.0
shell debug (read only) 799185 799185 0 0.0
(read/write) 65832 65832 0 0.0
.bss 23336 23336 0 0.0
.data 242 242 0 0.0
.data.rel.ro 37752 37752 0 0.0
.dynamic 592 592 0 0.0
.got 3528 3528 0 0.0
.init 27 27 0 0.0
.init_array 344 344 0 0.0
.rodata 78703 78703 0 0.0
.text 616466 616466 0 0.0
tv-app debug (read only) 1888193 1888273 80 0.0
(read/write) 318520 318616 96 0.0
.bss 249800 249832 32 0.0
.data 2768 2768 0 0.0
.data.rel.ro 60264 60328 64 0.1
.dynamic 592 592 0 0.0
.got 4432 4432 0 0.0
.init 27 27 0 0.0
.init_array 616 616 0 0.0
.rodata 158629 158661 32 0.0
.text 1584098 1584098 0 0.0
mbed all-clusters-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2290280 2290320 40 0.0
.bss 180316 180324 8 0.0
.data 5224 5224 0 0.0
.heap 850904 850896 -8 -0.0
.text 1252880 1252920 40 0.0
lighting-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2274408 2274448 40 0.0
.bss 172212 172220 8 0.0
.data 5576 5576 0 0.0
.heap 858656 858648 -8 -0.0
.text 1237008 1237048 40 0.0
lock-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2250240 2250280 40 0.0
.bss 171092 171100 8 0.0
.data 5568 5568 0 0.0
.heap 859784 859776 -8 -0.0
.text 1212840 1212880 40 0.0
pigweed-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 1139744 1139744 0 0.0
.bss 11752 11752 0 0.0
.data 4368 4368 0 0.0
.heap 1020328 1020328 0 0.0
.text 103128 103128 0 0.0
shell CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2050544 2050544 0 0.0
.bss 156280 156280 0 0.0
.data 4968 4968 0 0.0
.heap 875200 875200 0 0.0
.text 1013144 1013144 0 0.0
nrfconnect lighting-app nrf52840dk_nrf52840 (read/write) 865287 865327 40 0.0
bss 110608 110616 8 0.0
rodata 95848 95888 40 0.0
text 583212 583212 0 0.0
nrf52840dk_nrf52840+rpc (read/write) 827655 827695 40 0.0
bss 106964 106972 8 0.0
rodata 87032 87072 40 0.0
text 557380 557380 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 790342 790382 40 0.0
bss 111984 111992 8 0.0
rodata 91104 91144 40 0.0
text 512684 512684 0 0.0
lock-app nrf52840dk_nrf52840 (read/write) 840687 840759 72 0.0
bss 109632 109640 8 0.0
rodata 92320 92360 40 0.0
text 563308 563308 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 766022 766062 40 0.0
bss 111044 111052 8 0.0
rodata 87624 87664 40 0.0
text 492868 492868 0 0.0
pigweed-app nrf52840dk_nrf52840 (read/write) 497327 497327 0 0.0
bss 51824 51824 0 0.0
rodata 45780 45780 0 0.0
text 339436 339436 0 0.0
pump-app nrf52840dk_nrf52840 (read/write) 846827 846867 40 0.0
bss 109772 109780 8 0.0
rodata 94028 94068 40 0.0
text 567488 567488 0 0.0
pump-controller-app nrf52840dk_nrf52840 (read/write) 840419 840459 40 0.0
bss 109668 109676 8 0.0
rodata 92276 92316 40 0.0
text 562928 562928 0 0.0
shell nrf52840dk_nrf52840 (read/write) 778003 778003 0 0.0
bss 109112 109112 0 0.0
rodata 73064 73064 0 0.0
text 521244 521244 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 693058 693058 0 0.0
bss 110096 110096 0 0.0
rodata 67708 67708 0 0.0
text 441856 441856 0 0.0
p6 all-clusters-app default (read/write) 2303072 2303112 40 0.0
.bss 113288 113296 8 0.0
.data 2528 2528 0 0.0
.heap 917528 917520 -8 -0.0
.text 1261336 1261376 40 0.0
lock-app default (read/write) 2216272 2216312 40 0.0
.bss 100944 100952 8 0.0
.data 2400 2400 0 0.0
.heap 930000 929992 -8 -0.0
.text 1174536 1174576 40 0.0
qpg lighting-app qpg6100+debug (read only) 494340 494380 40 0.0
(read/write) 114144 114144 0 0.0
.bss 50264 50272 8 0.0
.data 1008 1008 0 0.0
.text 489020 489060 40 0.0
lock-app qpg6100+debug (read only) 469296 469336 40 0.0
(read/write) 114140 114140 0 0.0
.bss 49200 49208 8 0.0
.data 964 964 0 0.0
.text 463976 464016 40 0.0
persistent-storage-app qpg6100+debug (read only) 105416 105416 0 0.0
(read/write) 114142 114142 0 0.0
.bss 8994 8994 0 0.0
.data 272 272 0 0.0
.text 100096 100096 0 0.0
telink lighting-app tlsr9518adk80d (read/write) 768718 768774 56 0.0
bss 79120 79128 8 0.0
noinit 37160 37160 0 0.0
text 533836 533836 0 0.0

@andy31415
Copy link
Contributor

@yufengwangca - conflicts

@github-actions
Copy link

github-actions bot commented Nov 23, 2021

PR #12084: Size comparison from 71a3fb2 to 84f35a5

Increases (29 builds for efr32, esp32, k32w, linux, mbed, nrfconnect, p6, qpg, telink)
platform target config section 71a3fb2 84f35a5 change % change
efr32 lighting-app BRD4161A (read only) 752544 752584 40 0.0
(read/write) 119756 119764 8 0.0
.bss 117948 117956 8 0.0
.text 752536 752576 40 0.0
BRD4161A+rpc (read only) 740028 740068 40 0.0
(read/write) 136384 136392 8 0.0
.bss 134452 134460 8 0.0
.text 740020 740060 40 0.0
lock-app BRD4161A (read only) 729544 729584 40 0.0
(read/write) 117476 117484 8 0.0
.bss 115708 115716 8 0.0
.text 729536 729576 40 0.0
window-app BRD4161A (read only) 732992 733032 40 0.0
(read/write) 117836 117844 8 0.0
.bss 116060 116068 8 0.0
.text 732984 733024 40 0.0
esp32 all-clusters-app c3devkit (read/write) 1222314 1222370 56 0.0
.dram0.bss 57824 57832 8 0.0
.flash.rodata 165136 165176 40 0.0
m5stack (read/write) 421600 421648 48 0.0
.dram0.bss 63184 63192 8 0.0
.flash.rodata 193072 193112 40 0.0
k32w lighting-app k32w061+se05x+release (read/write) 708668 708716 48 0.0
.bss 77284 77292 8 0.0
.text 623664 623704 40 0.0
lock-app k32w061+debug (read/write) 600000 600048 48 0.0
.bss 67724 67732 8 0.0
.text 524588 524628 40 0.0
shell k32w061+debug (read/write) 665380 665428 48 0.0
.bss 78884 78892 8 0.0
.text 578840 578880 40 0.0
linux all-clusters-app debug (read only) 1751433 1751481 48 0.0
(read/write) 128880 128944 64 0.0
.data.rel.ro 63888 63952 64 0.1
bridge-app debug+rpc (read only) 1330909 1330957 48 0.0
(read/write) 76856 76920 64 0.1
.data.rel.ro 28688 28752 64 0.2
chip-tool debug (read only) 5914389 5916677 2288 0.0
(read/write) 196032 196224 192 0.1
.data.rel.ro 148272 148480 208 0.1
.rodata 283898 283930 32 0.0
.text 5249957 5251829 1872 0.0
lighting-app debug+rpc (read only) 1600809 1600857 48 0.0
(read/write) 110136 110168 32 0.0
.data.rel.ro 56304 56336 32 0.1
tv-app debug (read only) 1892849 1892929 80 0.0
(read/write) 319024 319120 96 0.0
.bss 249912 249944 32 0.0
.data.rel.ro 60648 60712 64 0.1
.rodata 159517 159549 32 0.0
mbed all-clusters-app CY8CPROTO_062_4343W+release (read/write) 2291256 2291296 40 0.0
.bss 180372 180380 8 0.0
.text 1253856 1253896 40 0.0
lighting-app CY8CPROTO_062_4343W+release (read/write) 2275472 2275512 40 0.0
.bss 172276 172284 8 0.0
.text 1238072 1238112 40 0.0
lock-app CY8CPROTO_062_4343W+release (read/write) 2251272 2251312 40 0.0
.bss 171092 171100 8 0.0
.text 1213872 1213912 40 0.0
nrfconnect lighting-app nrf52840dk_nrf52840 (read/write) 868563 868635 72 0.0
bss 112608 112616 8 0.0
rodata 96140 96180 40 0.0
nrf52840dk_nrf52840+rpc (read/write) 830931 831003 72 0.0
bss 108960 108968 8 0.0
rodata 87324 87364 40 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 793602 793674 72 0.0
bss 113980 113988 8 0.0
rodata 91396 91436 40 0.0
lock-app nrf52840dk_nrf52840 (read/write) 841715 841755 40 0.0
bss 109640 109648 8 0.0
rodata 92572 92612 40 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 767022 767062 40 0.0
bss 111052 111060 8 0.0
rodata 87880 87920 40 0.0
pump-app nrf52840dk_nrf52840 (read/write) 847827 847867 40 0.0
bss 109780 109788 8 0.0
rodata 94284 94324 40 0.0
pump-controller-app nrf52840dk_nrf52840 (read/write) 841419 841459 40 0.0
bss 109676 109684 8 0.0
rodata 92532 92572 40 0.0
p6 all-clusters-app default (read/write) 2304784 2304824 40 0.0
.bss 113360 113368 8 0.0
.text 1263048 1263088 40 0.0
lock-app default (read/write) 2217952 2217992 40 0.0
.bss 100952 100960 8 0.0
.text 1176216 1176256 40 0.0
qpg lighting-app qpg6100+debug (read only) 495344 495384 40 0.0
.bss 50328 50336 8 0.0
.text 490024 490064 40 0.0
lock-app qpg6100+debug (read only) 470288 470328 40 0.0
.bss 49200 49208 8 0.0
.text 464968 465008 40 0.0
telink lighting-app tlsr9518adk80d (read/write) 769898 769954 56 0.0
bss 79200 79208 8 0.0
Decreases (5 builds for mbed, p6)
platform target config section 71a3fb2 84f35a5 change % change
mbed all-clusters-app CY8CPROTO_062_4343W+release .heap 850840 850832 -8 -0.0
lighting-app CY8CPROTO_062_4343W+release .heap 858584 858576 -8 -0.0
lock-app CY8CPROTO_062_4343W+release .heap 859776 859768 -8 -0.0
p6 all-clusters-app default .heap 917448 917440 -8 -0.0
lock-app default .heap 929984 929976 -8 -0.0
Full report (38 builds for efr32, esp32, k32w, linux, mbed, nrfconnect, p6, qpg, telink)
platform target config section 71a3fb2 84f35a5 change % change
efr32 lighting-app BRD4161A (read only) 752544 752584 40 0.0
(read/write) 119756 119764 8 0.0
.bss 117948 117956 8 0.0
.data 1808 1808 0 0.0
.text 752536 752576 40 0.0
BRD4161A+rpc (read only) 740028 740068 40 0.0
(read/write) 136384 136392 8 0.0
.bss 134452 134460 8 0.0
.data 1932 1932 0 0.0
.text 740020 740060 40 0.0
lock-app BRD4161A (read only) 729544 729584 40 0.0
(read/write) 117476 117484 8 0.0
.bss 115708 115716 8 0.0
.data 1764 1764 0 0.0
.text 729536 729576 40 0.0
window-app BRD4161A (read only) 732992 733032 40 0.0
(read/write) 117836 117844 8 0.0
.bss 116060 116068 8 0.0
.data 1772 1772 0 0.0
.text 732984 733024 40 0.0
esp32 all-clusters-app c3devkit (read only) 834250 834250 0 0.0
(read/write) 1222314 1222370 56 0.0
.dram0.bss 57824 57832 8 0.0
.dram0.data 14100 14100 0 0.0
.flash.rodata 165136 165176 40 0.0
.flash.text 834250 834250 0 0.0
.iram0.text 61394 61394 0 0.0
m5stack (read only) 905215 905215 0 0.0
(read/write) 421600 421648 48 0.0
.dram0.bss 63184 63192 8 0.0
.dram0.data 34064 34064 0 0.0
.flash.rodata 193072 193112 40 0.0
.flash.text 899831 899831 0 0.0
.iram0.text 122943 122943 0 0.0
k32w lighting-app k32w061+se05x+release (read/write) 708668 708716 48 0.0
.bss 77284 77292 8 0.0
.data 1920 1920 0 0.0
.text 623664 623704 40 0.0
lock-app k32w061+debug (read/write) 600000 600048 48 0.0
.bss 67724 67732 8 0.0
.data 1888 1888 0 0.0
.text 524588 524628 40 0.0
shell k32w061+debug (read/write) 665380 665428 48 0.0
.bss 78884 78892 8 0.0
.data 1856 1856 0 0.0
.text 578840 578880 40 0.0
linux all-clusters-app debug (read only) 1751433 1751481 48 0.0
(read/write) 128880 128944 64 0.0
.bss 58640 58640 0 0.0
.data 1042 1042 0 0.0
.data.rel.ro 63888 63952 64 0.1
.dynamic 592 592 0 0.0
.got 4112 4112 0 0.0
.init 27 27 0 0.0
.init_array 568 568 0 0.0
.rodata 138677 138677 0 0.0
.text 1476162 1476162 0 0.0
bridge-app debug+rpc (read only) 1330909 1330957 48 0.0
(read/write) 76856 76920 64 0.1
.bss 41552 41552 0 0.0
.data 1584 1584 0 0.0
.data.rel.ro 28688 28752 64 0.2
.dynamic 592 592 0 0.0
.got 3984 3984 0 0.0
.init 27 27 0 0.0
.init_array 416 416 0 0.0
.rodata 113276 113276 0 0.0
.text 1119269 1119269 0 0.0
chip-tool debug (read only) 5914389 5916677 2288 0.0
(read/write) 196032 196224 192 0.1
.bss 39896 39896 0 0.0
.data 2288 2288 0 0.0
.data.rel.ro 148272 148480 208 0.1
.dynamic 592 592 0 0.0
.got 4456 4456 0 0.0
.init 27 27 0 0.0
.init_array 480 480 0 0.0
.rodata 283898 283930 32 0.0
.text 5249957 5251829 1872 0.0
lighting-app debug+rpc (read only) 1600809 1600857 48 0.0
(read/write) 110136 110168 32 0.0
.bss 47280 47280 0 0.0
.data 1234 1234 0 0.0
.data.rel.ro 56304 56336 32 0.1
.dynamic 608 608 0 0.0
.got 4136 4136 0 0.0
.init 27 27 0 0.0
.init_array 544 544 0 0.0
.rodata 131633 131633 0 0.0
.text 1333186 1333186 0 0.0
ota-provider-app debug (read only) 1280873 1280873 0 0.0
(read/write) 75376 75376 0 0.0
.bss 44128 44128 0 0.0
.data 800 800 0 0.0
.data.rel.ro 25336 25336 0 0.0
.dynamic 592 592 0 0.0
.got 4048 4048 0 0.0
.init 27 27 0 0.0
.init_array 456 456 0 0.0
.rodata 114999 114999 0 0.0
.text 1067202 1067202 0 0.0
ota-requestor-app debug (read only) 1377457 1377457 0 0.0
(read/write) 79240 79240 0 0.0
.bss 46592 46592 0 0.0
.data 864 864 0 0.0
.data.rel.ro 26664 26664 0 0.0
.dynamic 592 592 0 0.0
.got 4032 4032 0 0.0
.init 27 27 0 0.0
.init_array 480 480 0 0.0
.rodata 126408 126408 0 0.0
.text 1149586 1149586 0 0.0
shell debug (read only) 804641 804641 0 0.0
(read/write) 66160 66160 0 0.0
.bss 23336 23336 0 0.0
.data 274 274 0 0.0
.data.rel.ro 38008 38008 0 0.0
.dynamic 592 592 0 0.0
.got 3560 3560 0 0.0
.init 27 27 0 0.0
.init_array 352 352 0 0.0
.rodata 79279 79279 0 0.0
.text 620258 620258 0 0.0
tv-app debug (read only) 1892849 1892929 80 0.0
(read/write) 319024 319120 96 0.0
.bss 249912 249944 32 0.0
.data 2784 2784 0 0.0
.data.rel.ro 60648 60712 64 0.1
.dynamic 592 592 0 0.0
.got 4432 4432 0 0.0
.init 27 27 0 0.0
.init_array 624 624 0 0.0
.rodata 159517 159549 32 0.0
.text 1586930 1586930 0 0.0
mbed all-clusters-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2291256 2291296 40 0.0
.bss 180372 180380 8 0.0
.data 5232 5232 0 0.0
.heap 850840 850832 -8 -0.0
.text 1253856 1253896 40 0.0
lighting-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2275472 2275512 40 0.0
.bss 172276 172284 8 0.0
.data 5584 5584 0 0.0
.heap 858584 858576 -8 -0.0
.text 1238072 1238112 40 0.0
lock-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2251272 2251312 40 0.0
.bss 171092 171100 8 0.0
.data 5576 5576 0 0.0
.heap 859776 859768 -8 -0.0
.text 1213872 1213912 40 0.0
pigweed-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 1139744 1139744 0 0.0
.bss 11752 11752 0 0.0
.data 4368 4368 0 0.0
.heap 1020328 1020328 0 0.0
.text 103128 103128 0 0.0
shell CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2050936 2050936 0 0.0
.bss 156280 156280 0 0.0
.data 4976 4976 0 0.0
.heap 875192 875192 0 0.0
.text 1013536 1013536 0 0.0
nrfconnect lighting-app nrf52840dk_nrf52840 (read/write) 868563 868635 72 0.0
bss 112608 112616 8 0.0
rodata 96140 96180 40 0.0
text 584192 584192 0 0.0
nrf52840dk_nrf52840+rpc (read/write) 830931 831003 72 0.0
bss 108960 108968 8 0.0
rodata 87324 87364 40 0.0
text 558360 558360 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 793602 793674 72 0.0
bss 113980 113988 8 0.0
rodata 91396 91436 40 0.0
text 513660 513660 0 0.0
lock-app nrf52840dk_nrf52840 (read/write) 841715 841755 40 0.0
bss 109640 109648 8 0.0
rodata 92572 92612 40 0.0
text 564044 564044 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 767022 767062 40 0.0
bss 111052 111060 8 0.0
rodata 87880 87920 40 0.0
text 493604 493604 0 0.0
pigweed-app nrf52840dk_nrf52840 (read/write) 497327 497327 0 0.0
bss 51824 51824 0 0.0
rodata 45780 45780 0 0.0
text 339436 339436 0 0.0
pump-app nrf52840dk_nrf52840 (read/write) 847827 847867 40 0.0
bss 109780 109788 8 0.0
rodata 94284 94324 40 0.0
text 568228 568228 0 0.0
pump-controller-app nrf52840dk_nrf52840 (read/write) 841419 841459 40 0.0
bss 109676 109684 8 0.0
rodata 92532 92572 40 0.0
text 563664 563664 0 0.0
shell nrf52840dk_nrf52840 (read/write) 778671 778671 0 0.0
bss 109160 109160 0 0.0
rodata 73196 73196 0 0.0
text 521696 521696 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 693678 693678 0 0.0
bss 110144 110144 0 0.0
rodata 67840 67840 0 0.0
text 442304 442304 0 0.0
p6 all-clusters-app default (read/write) 2304784 2304824 40 0.0
.bss 113360 113368 8 0.0
.data 2536 2536 0 0.0
.heap 917448 917440 -8 -0.0
.text 1263048 1263088 40 0.0
lock-app default (read/write) 2217952 2217992 40 0.0
.bss 100952 100960 8 0.0
.data 2408 2408 0 0.0
.heap 929984 929976 -8 -0.0
.text 1176216 1176256 40 0.0
qpg lighting-app qpg6100+debug (read only) 495344 495384 40 0.0
(read/write) 114144 114144 0 0.0
.bss 50328 50336 8 0.0
.data 1016 1016 0 0.0
.text 490024 490064 40 0.0
lock-app qpg6100+debug (read only) 470288 470328 40 0.0
(read/write) 114140 114140 0 0.0
.bss 49200 49208 8 0.0
.data 972 972 0 0.0
.text 464968 465008 40 0.0
persistent-storage-app qpg6100+debug (read only) 105408 105408 0 0.0
(read/write) 114142 114142 0 0.0
.bss 8986 8986 0 0.0
.data 272 272 0 0.0
.text 100088 100088 0 0.0
telink lighting-app tlsr9518adk80d (read/write) 769898 769954 56 0.0
bss 79200 79208 8 0.0
noinit 37160 37160 0 0.0
text 534636 534636 0 0.0

@yufengwangca yufengwangca merged commit 2490197 into project-chip:master Nov 23, 2021
@yufengwangca yufengwangca deleted the pr/featuremap/software branch November 23, 2021 17:06
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.

6 participants