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

Add Sphinx documentation framework #24185

Merged
merged 8 commits into from
Jan 9, 2023
Merged

Conversation

gautesl
Copy link
Contributor

@gautesl gautesl commented Dec 22, 2022

This PR is a continuation of #19950

Problem

This PR is a follow-up to the doc framework meeting on February 13, 2022. Goals discussed at the meeting for the doc framework setup:

  • Ensure global structure for docs (host the available guides in a structured way on one website, set up doc framework)
  • Reduce content duplication (make it possible to organize pages into a coherent platform instead of single pages with duplicated content on github)
  • Foster contribution and collaboration (make it easier to navigate pages and search for content from the one website)
  • Use reliable platform solutions and best practices (use MyST and github.io, integrate CI deployment of the doc framework)

Change overview

This PR introduces Sphinx as a documentation framework, and includes a workflow that builds the documentation and deploys the generated html to an external repository where it is served by github.io.

The PR consists of:

  • New files in the docs folder setting up the needed files for using MyST with Sphinx, as well as a prototype ToC-tree.
  • Extensions for transforming markdown files to be compatible with MyST.
  • Fixes for existing broken links within the documentation files.
  • Changes to syntax that does not render within MyST/Sphinx.
  • A workflow file that triggers on push to master, which builds the documentation and deploy it to an external repository where they are served by github.io.

A preview of the generated page can be seen based off my fork here: https://gautesl.github.io/connectedhomeip/docs/
I will keep the page up while this PR is open.

Differences when writing docs for Sphinx

Adding files to Sphinx

Currently, everything in /docs and all images and .md files in /examples are part of the Sphinx documentation. Everything picked up by Sphinx must be part of the ToC-tree, but in the case that a file should be part of the documentation but not part of the ToC-tree, the following can be put on top of the file:

---
orphan: true
---

Note that this will not render as hidden on GitHub.

For a file to be a part of the ToC-tree, it must be referenced by another file with the following syntax:

```{toctree}

my_new_file
```

See docs/index.md for the root of the ToC-tree.

Should a file within /docs or /examples not be part of the documentation, it must be added to the exclude_patterns list located in /docs/conf.py.

HTML

Nested HTML tags in markdown files will not render. If nesting is necessary to e.g. centre an image, the following syntax can be used (note that this will not render on GitHub):

```{image} path/to/image.png
:alt: sometext
:align: center
```

For more information, see the official documentation

Links

Some existing links no longer works when used within Sphinx. To avoid rewriting all existing documentation and make the links renderable both on Sphinx and GitHub, the broken links are transformed upon building with the following rules:

  • All hyperlinks works as usual.
  • Most other links will work as usual, but links to sections within another page are removed
    • [link](my/page#my_section) becomes [link](my/page)
  • Links to anything but .md, .png, .jpg and .svg files are transformed into external links to the GitHub location of that file
    • More file-extensions can be added in conf.py under external_content_link_extensions
  • Links to any file in the src, scripts or .vscode folders are transformed into external links to the GitHub location of that file.
    • More folders can be added in conf.py under external_content_link_repositories if you need to link to a file not included in the ToC-tree.
  • Using the <a name="my-anchor"></a> pattern no longer works.
    • The normal same-page section links still works as usual provided the correct section anchor is used
      • e.g [See my section](#my-section) in combination with #### My Section.
    • Direct links to sections on another page in Sphinx can be created using the following pattern (note that this will not render as hidden on GitHub):
    [This link works on all pages](my-important-anchor)
    
    (my-important-anchor)=
    ## Important!
    

For more information, see the official documentation

Emojis

Emojis written on the form :heavy_check_mark: does not render in Sphinx. Where these would be used, the unicode version of the emoji should be used directly instead.

Final notes

  • This PR introduces the Sphinx framework, and produces a prototype. The contents of the documentation should be expanded upon as needed.
  • The docbuild.yaml workflow is currently set to deploy the generated html to https://github.com/project-chip/connectedhomeip-doc, which is rendered at https://project-chip.github.io/connectedhomeip-doc/. This will overwrite the current Doxygen documentation that resides there
  • Most README.md files include a table of contents at the very start. If desired, these may be removed in the future, as Sphinx automatically maintains a ToC for every page.

Testing

  • This PR does not affect any source code.
  • Building with Sphinx will fail if it contains any broken internal links.
  • External links can be manually checked with make linkcheck in the docs folder.

@github-actions
Copy link

github-actions bot commented Dec 22, 2022

PR #24185: Size comparison from 74296b8 to b5dde6e

Increases (7 builds for bl602, cc13x2_26x2, nrfconnect, psoc6, telink)
platform target config section 74296b89 b5dde6e change % change
bl602 lighting-app bl602 (read/write) 1356434 1356442 8 0.0
.text 1039192 1039194 2 0.0
cc13x2_26x2 all-clusters-app LP_CC2652R7 (read only) 679859 679867 8 0.0
.text 589552 589560 8 0.0
lock-ftd LP_CC2652R7 (read/write) 171608 171616 8 0.0
nrfconnect all-clusters-app nrf7002dk_nrf5340_cpuapp text 759958 759962 4 0.0
lock-app nrf52840dk_nrf52840 (read/write) 1135911 1135927 16 0.0
text 773358 773362 4 0.0
psoc6 lock cy8ckit_062s2_43012 .debug_info 22478110 22478111 1 0.0
telink all-clusters-app tlsr9518adk80d text 726244 726246 2 0.0
Decreases (12 builds for bl702, cc13x2_26x2, esp32, nrfconnect, psoc6, qpg, telink)
platform target config section 74296b89 b5dde6e change % change
bl702 lighting-app bl702 (read/write) 1196351 1196335 -16 -0.0
.debug_info 39187935 39187933 -2 -0.0
.text 956884 956880 -4 -0.0
cc13x2_26x2 all-clusters-app LP_CC2652R7 (read/write) 171588 171580 -8 -0.0
lock-ftd LP_CC2652R7 (read only) 677399 677391 -8 -0.0
.text 599504 599496 -8 -0.0
esp32 all-clusters-app c3devkit (read only) 1219468 1219466 -2 -0.0
.flash.text 1219468 1219466 -2 -0.0
nrfconnect light-switch-app nrf52840dk_nrf52840 text 760836 760832 -4 -0.0
lock-app nrf5340dk_nrf5340_cpuapp text 685522 685518 -4 -0.0
pump-app nrf52840dk_nrf52840 text 753642 753638 -4 -0.0
psoc6 light cy8ckit_062s2_43012 .debug_info 22259725 22259724 -1 -0.0
qpg lighting-app qpg6105+debug (read/write) 1151236 1151228 -8 -0.0
.text 598336 598328 -8 -0.0
telink light-switch-app tlsr9518adk80d (read/write) 932288 932280 -8 -0.0
text 638034 638032 -2 -0.0
lighting-app tlsr9518adk80d (read/write) 1010256 1010248 -8 -0.0
text 703810 703808 -2 -0.0
thermostat tlsr9518adk80d text 638718 638716 -2 -0.0
Full report (70 builds for bl602, bl702, cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
platform target config section 74296b89 b5dde6e change % change
bl602 lighting-app bl602 (read/write) 1356434 1356442 8 0.0
.bss 86977 86977 0 0.0
.data 9984 9984 0 0.0
.text 1039192 1039194 2 0.0
bl602+rpc (read/write) 1402218 1402218 0 0.0
.bss 95017 95017 0 0.0
.data 10384 10384 0 0.0
.text 1070616 1070616 0 0.0
bl702 lighting-app bl702 (read only) 3262 3262 0 0.0
(read/write) 1196351 1196335 -16 -0.0
.bleromro 6296 6296 0 0.0
.bleromrw 124 124 0 0.0
.boot2 688 688 0 0.0
.bss 67102 67102 0 0.0
.bss_psram 30048 30048 0 0.0
.comment 48 48 0 0.0
.data 4048 4048 0 0.0
.debug_abbrev 1529044 1529044 0 0.0
.debug_aranges 132568 132568 0 0.0
.debug_frame 486476 486476 0 0.0
.debug_info 39187935 39187933 -2 -0.0
.debug_line 5150433 5150433 0 0.0
.debug_loc 3381394 3381394 0 0.0
.debug_ranges 363816 363816 0 0.0
.debug_str 3483437 3483437 0 0.0
.hbn 509 509 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 144 144 0 0.0
.psram 0 0 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 116400 116400 0 0.0
.rsvd 3188 3188 0 0.0
.shstrtab 293 293 0 0.0
.stack 2048 2048 0 0.0
.strtab 569377 569377 0 0.0
.symtab 172160 172160 0 0.0
.tcm_data 36 36 0 0.0
.tcmcode 3262 3262 0 0.0
.text 0 0 0 0.0
956884 956880 -4 -0.0
bl702+rpc (read only) 3262 3262 0 0.0
(read/write) 1284827 1284827 0 0.0
.bleromro 6296 6296 0 0.0
.bleromrw 124 124 0 0.0
.boot2 688 688 0 0.0
.bss 75118 75118 0 0.0
.bss_psram 30304 30304 0 0.0
.comment 48 48 0 0.0
.data 4576 4576 0 0.0
.debug_abbrev 1676376 1676376 0 0.0
.debug_aranges 140688 140688 0 0.0
.debug_frame 513896 513896 0 0.0
.debug_info 43480353 43480353 0 0.0
.debug_line 5539882 5539882 0 0.0
.debug_loc 3576086 3576086 0 0.0
.debug_ranges 387352 387352 0 0.0
.debug_str 3885835 3885835 0 0.0
.hbn 509 509 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 160 160 0 0.0
.psram 0 0 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 130144 130144 0 0.0
.rsvd 3188 3188 0 0.0
.shstrtab 293 293 0 0.0
.stack 2048 2048 0 0.0
.strtab 629661 629661 0 0.0
.symtab 190336 190336 0 0.0
.tcm_data 36 36 0 0.0
.tcmcode 3262 3262 0 0.0
.text 0 0 0 0.0
1030862 1030862 0 0.0
cc13x2_26x2 all-clusters-app LP_CC2652R7 (read only) 679859 679867 8 0.0
(read/write) 171588 171580 -8 -0.0
.bss 81140 81140 0 0.0
.data 3380 3380 0 0.0
.rodata 89995 89995 0 0.0
.text 589552 589560 8 0.0
all-clusters-minimal-app LP_CC2652R7 (read only) 644139 644139 0 0.0
(read/write) 157916 157916 0 0.0
.bss 80420 80420 0 0.0
.data 3380 3380 0 0.0
.rodata 79139 79139 0 0.0
.text 564680 564680 0 0.0
lock-ftd LP_CC2652R7 (read only) 677399 677391 -8 -0.0
(read/write) 171608 171616 8 0.0
.bss 78788 78788 0 0.0
.data 3304 3304 0 0.0
.rodata 77415 77415 0 0.0
.text 599504 599496 -8 -0.0
lock-mtd LP_CC2652R7 (read only) 662203 662203 0 0.0
(read/write) 182068 182068 0 0.0
.bss 74052 74052 0 0.0
.data 3304 3304 0 0.0
.rodata 103507 103507 0 0.0
.text 558216 558216 0 0.0
pump-app LP_CC2652R7 (read only) 690439 690439 0 0.0
(read/write) 159304 159304 0 0.0
.bss 78756 78756 0 0.0
.data 3296 3296 0 0.0
.rodata 91031 91031 0 0.0
.text 598924 598924 0 0.0
pump-controller-app LP_CC2652R7 (read only) 674363 674363 0 0.0
(read/write) 175484 175484 0 0.0
.bss 78860 78860 0 0.0
.data 3292 3292 0 0.0
.rodata 86587 86587 0 0.0
.text 587296 587296 0 0.0
shell LP_CC2652R7 (read only) 671090 671090 0 0.0
(read/write) 182684 182684 0 0.0
.bss 83468 83468 0 0.0
.data 3376 3376 0 0.0
.rodata 86738 86738 0 0.0
.text 584036 584036 0 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 588482 588482 0 0.0
.app_xip_area 464828 464828 0 0.0
.bss 66112 66112 0 0.0
.data 728 728 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
lock cyw930739m2evb_01 (read/write) 592294 592294 0 0.0
.app_xip_area 463344 463344 0 0.0
.bss 71400 71400 0 0.0
.data 736 736 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
ota-requestor-no-progress-logging cyw930739m2evb_01 (read/write) 551862 551862 0 0.0
.app_xip_area 433704 433704 0 0.0
.bss 60656 60656 0 0.0
.data 684 684 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
efr32 lighting-app BRD4161A+rpc (read/write) 976468 976468 0 0.0
.bss 152172 152172 0 0.0
.data 2168 2168 0 0.0
.text 822108 822108 0 0.0
BRD4161A+rs911x (read/write) 1038920 1038920 0 0.0
.bss 186648 186648 0 0.0
.data 2012 2012 0 0.0
.text 850240 850240 0 0.0
BRD4187C (read/write) 1149948 1149948 0 0.0
.bss 138568 138568 0 0.0
.data 2516 2516 0 0.0
.text 984268 984268 0 0.0
lock-app BRD4161A+wf200 (read/write) 1069136 1069136 0 0.0
.bss 158184 158184 0 0.0
.data 2020 2020 0 0.0
.text 908908 908908 0 0.0
window-app BRD4187C (read/write) 1142592 1142592 0 0.0
.bss 139984 139984 0 0.0
.data 2540 2540 0 0.0
.text 975472 975472 0 0.0
esp32 all-clusters-app c3devkit (read only) 1219468 1219466 -2 -0.0
(read/write) 1790954 1790954 0 0.0
.dram0.bss 76912 76912 0 0.0
.dram0.data 13928 13928 0 0.0
.flash.rodata 248392 248392 0 0.0
.flash.text 1219468 1219466 -2 -0.0
.iram0.text 71188 71188 0 0.0
m5stack (read only) 1233407 1233407 0 0.0
(read/write) 564187 564187 0 0.0
.dram0.bss 82064 82064 0 0.0
.dram0.data 34224 34224 0 0.0
.flash.rodata 314180 314180 0 0.0
.flash.text 1228023 1228023 0 0.0
.iram0.text 124803 124803 0 0.0
k32w contact k32w0+release (read/write) 662716 662716 0 0.0
.bss 77032 77032 0 0.0
.data 2104 2104 0 0.0
.text 564468 564468 0 0.0
light k32w0+release (read/write) 673400 673400 0 0.0
.bss 74824 74824 0 0.0
.data 2060 2060 0 0.0
.text 593788 593788 0 0.0
lock k32w0+release (read/write) 634228 634228 0 0.0
.bss 75584 75584 0 0.0
.data 2080 2080 0 0.0
.text 553836 553836 0 0.0
linux all-clusters-app debug (read only) 3114473 3114473 0 0.0
(read/write) 158600 158600 0 0.0
.bss 62464 62464 0 0.0
.data 2304 2304 0 0.0
.data.rel.ro 87240 87240 0 0.0
.dynamic 608 608 0 0.0
.got 4768 4768 0 0.0
.init 27 27 0 0.0
.init_array 1184 1184 0 0.0
.rodata 281611 281611 0 0.0
.text 2648178 2648178 0 0.0
all-clusters-minimal-app debug (read only) 2938137 2938137 0 0.0
(read/write) 150000 150000 0 0.0
.bss 61664 61664 0 0.0
.data 2272 2272 0 0.0
.data.rel.ro 79608 79608 0 0.0
.dynamic 608 608 0 0.0
.got 4680 4680 0 0.0
.init 27 27 0 0.0
.init_array 1160 1160 0 0.0
.rodata 281035 281035 0 0.0
.text 2475458 2475458 0 0.0
bridge-app debug (read only) 2475961 2475961 0 0.0
(read/write) 131344 131344 0 0.0
.bss 51488 51488 0 0.0
.data 3792 3792 0 0.0
.data.rel.ro 69992 69992 0 0.0
.dynamic 608 608 0 0.0
.got 4576 4576 0 0.0
.init 27 27 0 0.0
.init_array 840 840 0 0.0
.rodata 211808 211808 0 0.0
.text 2094274 2094274 0 0.0
chip-tool debug (read only) 11182745 11182745 0 0.0
(read/write) 646808 646808 0 0.0
.bss 25912 25912 0 0.0
.data 2754 2754 0 0.0
.data.rel.ro 611568 611568 0 0.0
.dynamic 608 608 0 0.0
.got 5184 5184 0 0.0
.init 27 27 0 0.0
.init_array 728 728 0 0.0
.rodata 605061 605061 0 0.0
.text 9078820 9078820 0 0.0
chip-tool-ipv6only arm64 (read only) 10595948 10595948 0 0.0
(read/write) 695928 695928 0 0.0
.bss 33912 33912 0 0.0
.data 2768 2768 0 0.0
.data.rel.ro 640376 640376 0 0.0
.dynamic 560 560 0 0.0
.got 13832 13832 0 0.0
.init 24 24 0 0.0
.init_array 200 200 0 0.0
.rodata 535196 535196 0 0.0
.text 8412948 8412948 0 0.0
lighting-app debug+rpc (read only) 2664337 2664337 0 0.0
(read/write) 132488 132488 0 0.0
.bss 49984 49984 0 0.0
.data 2288 2288 0 0.0
.data.rel.ro 74024 74024 0 0.0
.dynamic 608 608 0 0.0
.got 4632 4632 0 0.0
.init 27 27 0 0.0
.init_array 928 928 0 0.0
.rodata 228224 228224 0 0.0
.text 2259362 2259362 0 0.0
lock-app debug (read only) 2623401 2623401 0 0.0
(read/write) 127472 127472 0 0.0
.bss 48416 48416 0 0.0
.data 1904 1904 0 0.0
.data.rel.ro 70936 70936 0 0.0
.dynamic 608 608 0 0.0
.got 4664 4664 0 0.0
.init 27 27 0 0.0
.init_array 904 904 0 0.0
.rodata 244488 244488 0 0.0
.text 2207010 2207010 0 0.0
ota-provider-app debug (read only) 2190057 2190057 0 0.0
(read/write) 105608 105608 0 0.0
.bss 46560 46560 0 0.0
.data 2080 2080 0 0.0
.data.rel.ro 51864 51864 0 0.0
.dynamic 608 608 0 0.0
.got 3728 3728 0 0.0
.init 27 27 0 0.0
.init_array 736 736 0 0.0
.rodata 195336 195336 0 0.0
.text 1855010 1855010 0 0.0
ota-requestor-app debug (read only) 2358841 2358841 0 0.0
(read/write) 113952 113952 0 0.0
.bss 49088 49088 0 0.0
.data 2448 2448 0 0.0
.data.rel.ro 57208 57208 0 0.0
.dynamic 608 608 0 0.0
.got 3728 3728 0 0.0
.init 27 27 0 0.0
.init_array 824 824 0 0.0
.rodata 202512 202512 0 0.0
.text 2007426 2007426 0 0.0
shell debug (read only) 2646945 2646945 0 0.0
(read/write) 143064 143064 0 0.0
.bss 57864 57864 0 0.0
.data 1264 1264 0 0.0
.data.rel.ro 78136 78136 0 0.0
.dynamic 608 608 0 0.0
.got 4128 4128 0 0.0
.init 27 27 0 0.0
.init_array 1032 1032 0 0.0
.rodata 239858 239858 0 0.0
.text 2247378 2247378 0 0.0
thermostat-no-ble arm64 (read only) 2478044 2478044 0 0.0
(read/write) 145016 145016 0 0.0
.bss 55336 55336 0 0.0
.data 1816 1816 0 0.0
.data.rel.ro 78640 78640 0 0.0
.dynamic 560 560 0 0.0
.got 5192 5192 0 0.0
.init 24 24 0 0.0
.init_array 432 432 0 0.0
.rodata 149560 149560 0 0.0
.text 2067888 2067888 0 0.0
tv-app debug (read only) 3286737 3286737 0 0.0
(read/write) 262312 262312 0 0.0
.bss 170808 170808 0 0.0
.data 4256 4256 0 0.0
.data.rel.ro 80544 80544 0 0.0
.dynamic 608 608 0 0.0
.got 5000 5000 0 0.0
.init 27 27 0 0.0
.init_array 1064 1064 0 0.0
.rodata 268856 268856 0 0.0
.text 2823554 2823554 0 0.0
tv-casting-app debug (read only) 5645937 5645937 0 0.0
(read/write) 162672 162672 0 0.0
.bss 52184 52184 0 0.0
.data 1936 1936 0 0.0
.data.rel.ro 101960 101960 0 0.0
.dynamic 608 608 0 0.0
.got 4920 4920 0 0.0
.init 27 27 0 0.0
.init_array 1040 1040 0 0.0
.rodata 359321 359321 0 0.0
.text 5009026 5009026 0 0.0
mbed all-clusters-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2542924 2542924 0 0.0
.bss 222648 222648 0 0.0
.data 5592 5592 0 0.0
.text 1505540 1505540 0 0.0
all-clusters-minimal-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2491312 2491312 0 0.0
.bss 221920 221920 0 0.0
.data 5568 5568 0 0.0
.text 1453908 1453908 0 0.0
lighting-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2477868 2477868 0 0.0
.bss 216628 216628 0 0.0
.data 5848 5848 0 0.0
.text 1440484 1440484 0 0.0
lock-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2463832 2463832 0 0.0
.bss 214932 214932 0 0.0
.data 5872 5872 0 0.0
.text 1426476 1426476 0 0.0
pigweed-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 1154028 1154028 0 0.0
.bss 10944 10944 0 0.0
.data 4520 4520 0 0.0
.text 117412 117412 0 0.0
shell CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2425636 2425636 0 0.0
.bss 214944 214944 0 0.0
.data 5752 5752 0 0.0
.text 1388252 1388252 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read/write) 1190987 1190987 0 0.0
bss 145205 145205 0 0.0
rodata 144544 144544 0 0.0
text 820122 820122 0 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1361250 1361250 0 0.0
bss 105144 105144 0 0.0
rodata 211640 211640 0 0.0
text 759958 759962 4 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read/write) 1136647 1136647 0 0.0
bss 144440 144440 0 0.0
rodata 120860 120860 0 0.0
text 790290 790290 0 0.0
light-switch-app nrf52840dk_nrf52840 (read/write) 1099159 1099159 0 0.0
bss 136822 136822 0 0.0
rodata 120524 120524 0 0.0
text 760836 760832 -4 -0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1267502 1267502 0 0.0
bss 98796 98796 0 0.0
rodata 176548 176548 0 0.0
text 707740 707740 0 0.0
lighting-app nrf52840dk_nrf52840+rpc (read/write) 1144131 1144131 0 0.0
bss 147371 147371 0 0.0
rodata 115640 115640 0 0.0
text 798772 798772 0 0.0
nrf52840dongle_nrf52840 (read/write) 1086995 1086995 0 0.0
bss 154348 154348 0 0.0
rodata 94224 94224 0 0.0
text 754094 754094 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 1082018 1082018 0 0.0
bss 143026 143026 0 0.0
rodata 117684 117684 0 0.0
text 738240 738240 0 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1267502 1267502 0 0.0
bss 98796 98796 0 0.0
rodata 176548 176548 0 0.0
text 707740 707740 0 0.0
lock-app nrf52840dk_nrf52840 (read/write) 1135911 1135927 16 0.0
bss 137870 137870 0 0.0
rodata 143708 143708 0 0.0
text 773358 773362 4 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 1038470 1038470 0 0.0
bss 133755 133755 0 0.0
rodata 136112 136112 0 0.0
text 685522 685518 -4 -0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1304618 1304618 0 0.0
bss 99878 99878 0 0.0
rodata 199788 199788 0 0.0
text 720516 720516 0 0.0
pigweed-app nrf52840dk_nrf52840 (read/write) 580955 580955 0 0.0
bss 75169 75169 0 0.0
rodata 45224 45224 0 0.0
text 399076 399076 0 0.0
pump-app nrf52840dk_nrf52840 (read/write) 1089875 1089875 0 0.0
bss 136651 136651 0 0.0
rodata 118616 118616 0 0.0
text 753642 753638 -4 -0.0
pump-controller-app nrf52840dk_nrf52840 (read/write) 1075811 1075811 0 0.0
bss 136418 136418 0 0.0
rodata 115096 115096 0 0.0
text 743352 743352 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read only) 842056 842056 0 0.0
(read/write) 1749660 1749660 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 188624 188624 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2664 2664 0 0.0
.debug_abbrev 1238156 1238156 0 0.0
.debug_aranges 110768 110768 0 0.0
.debug_frame 371952 371952 0 0.0
.debug_info 27060312 27060312 0 0.0
.debug_line 3709704 3709704 0 0.0
.debug_loc 3624768 3624768 0 0.0
.debug_ranges 346584 346584 0 0.0
.debug_str 3453864 3453864 0 0.0
.heap 842056 842056 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 572205 572205 0 0.0
.symtab 422128 422128 0 0.0
.text 0 0 0 0.0
1549984 1549984 0 0.0
.zero.table 8 8 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read only) 842784 842784 0 0.0
(read/write) 1692188 1692188 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 187896 187896 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2664 2664 0 0.0
.debug_abbrev 1230047 1230047 0 0.0
.debug_aranges 110240 110240 0 0.0
.debug_frame 375008 375008 0 0.0
.debug_info 26797110 26797110 0 0.0
.debug_line 3728609 3728609 0 0.0
.debug_loc 3612374 3612374 0 0.0
.debug_ranges 345200 345200 0 0.0
.debug_str 3442876 3442876 0 0.0
.heap 842784 842784 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 536294 536294 0 0.0
.symtab 408560 408560 0 0.0
.text 1493240 1493240 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
light cy8ckit_062s2_43012 (read only) 850976 850976 0 0.0
(read/write) 1610404 1610404 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 179912 179912 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2456 2456 0 0.0
.debug_abbrev 1064846 1064846 0 0.0
.debug_aranges 102440 102440 0 0.0
.debug_frame 345344 345344 0 0.0
.debug_info 22259725 22259724 -1 -0.0
.debug_line 3295718 3295718 0 0.0
.debug_loc 3310296 3310296 0 0.0
.debug_ranges 309336 309336 0 0.0
.debug_str 3248462 3248462 0 0.0
.heap 850976 850976 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 472619 472619 0 0.0
.symtab 376928 376928 0 0.0
.text 1419648 1419648 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
lock cy8ckit_062s2_43012 (read only) 845984 845984 0 0.0
(read/write) 1644356 1644356 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 184888 184888 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2472 2472 0 0.0
.debug_abbrev 1066756 1066756 0 0.0
.debug_aranges 102824 102824 0 0.0
.debug_frame 347140 347140 0 0.0
.debug_info 22478110 22478111 1 0.0
.debug_line 3295612 3295612 0 0.0
.debug_loc 3331728 3331728 0 0.0
.debug_ranges 311192 311192 0 0.0
.debug_str 3264300 3264300 0 0.0
.heap 845984 845984 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 475336 475336 0 0.0
.symtab 378928 378928 0 0.0
.text 1448608 1448608 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
qpg lighting-app qpg6105+debug (read/write) 1151236 1151228 -8 -0.0
.bss 100348 100348 0 0.0
.data 840 840 0 0.0
.text 598336 598328 -8 -0.0
lock-app qpg6105+debug (read/write) 1117540 1117540 0 0.0
.bss 95828 95828 0 0.0
.data 836 836 0 0.0
.text 564636 564636 0 0.0
telink all-clusters-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1071524 1071524 0 0.0
bss 98856 98856 0 0.0
text 726244 726246 2 0.0
all-clusters-minimal-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1010824 1010824 0 0.0
bss 98080 98080 0 0.0
text 691408 691408 0 0.0
light-switch-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 932288 932280 -8 -0.0
bss 90320 90320 0 0.0
text 638034 638032 -2 -0.0
lighting-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1010256 1010248 -8 -0.0
bss 98380 98380 0 0.0
text 703810 703808 -2 -0.0
ota-requestor-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 945884 945884 0 0.0
bss 91276 91276 0 0.0
text 649288 649288 0 0.0
thermostat tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 935428 935428 0 0.0
bss 91712 91712 0 0.0
text 638718 638716 -2 -0.0

.github/workflows/docbuild.yaml Outdated Show resolved Hide resolved
examples/all-clusters-app/cc13x2x7_26x2x7/README.md Outdated Show resolved Hide resolved
Added the basics for a sphinx-based doc portal.

Added an extension `external_content` that copies the relevant
doc files that are used in the documentation. This extension
also modifies files while copying to adjust links and allow
syntax that renders on both GitHub and Sphinx.

Warnings when building the documentation have been
fixed or removed. Fixes include:
- Linking errors
- Typos
- ToC tree errors
- Adding MyST configuration data
- Removing anchors on the form <a name="my-anchor"></a> as they
  cannot be used by sphinx
- Changed the GitHub rendered emoji `:heavy_check_mark:` to the
ascii symbol ✔ so that it renders with Sphinx

Signed-off-by: Gaute Svanes Lunde <gaute.lunde@nordicsemi.no>
Expand the markdown fences to include MyST for Sphinx syntax
like the following:

```{include} my/file.md
```

Signed-off-by: Gaute Svanes Lunde <gaute.lunde@nordicsemi.no>
Add a workflow for building the documentation with Sphinx and
deploy the generated html to the
`project-chip/connectedhomeip-doc` repository to be used by
github.io. This will overwrite the existing Doxygen
documentation that is hosted there.

Signed-off-by: Gaute Svanes Lunde <gaute.lunde@nordicsemi.no>
@github-actions
Copy link

github-actions bot commented Dec 23, 2022

PR #24185: Size comparison from 63803aa to 459de44

Increases (8 builds for bl702, k32w, psoc6, telink)
platform target config section 63803aa 459de44 change % change
bl702 lighting-app bl702 (read/write) 1196335 1196351 16 0.0
.debug_info 39187933 39187935 2 0.0
.text 956880 956884 4 0.0
k32w contact k32w0+release (read/write) 662700 662716 16 0.0
.text 564452 564468 16 0.0
psoc6 all-clusters cy8ckit_062s2_43012 .debug_info 27060315 27060316 1 0.0
all-clusters-minimal cy8ckit_062s2_43012 .debug_info 26797114 26797115 1 0.0
light cy8ckit_062s2_43012 .debug_info 22259724 22259725 1 0.0
telink light-switch-app tlsr9518adk80d text 638030 638032 2 0.0
ota-requestor-app tlsr9518adk80d text 649286 649288 2 0.0
thermostat tlsr9518adk80d text 638714 638718 4 0.0
Decreases (2 builds for cc13x2_26x2, nrfconnect)
platform target config section 63803aa 459de44 change % change
cc13x2_26x2 all-clusters-minimal-app LP_CC2652R7 (read only) 644139 644131 -8 -0.0
.text 564680 564672 -8 -0.0
nrfconnect lock-app nrf5340dk_nrf5340_cpuapp text 685534 685530 -4 -0.0
Full report (70 builds for bl602, bl702, cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
platform target config section 63803aa 459de44 change % change
bl602 lighting-app bl602 (read/write) 1356434 1356434 0 0.0
.bss 86977 86977 0 0.0
.data 9984 9984 0 0.0
.text 1039192 1039192 0 0.0
bl602+rpc (read/write) 1402218 1402218 0 0.0
.bss 95017 95017 0 0.0
.data 10384 10384 0 0.0
.text 1070614 1070614 0 0.0
bl702 lighting-app bl702 (read only) 3262 3262 0 0.0
(read/write) 1196335 1196351 16 0.0
.bleromro 6296 6296 0 0.0
.bleromrw 124 124 0 0.0
.boot2 688 688 0 0.0
.bss 67102 67102 0 0.0
.bss_psram 30048 30048 0 0.0
.comment 48 48 0 0.0
.data 4048 4048 0 0.0
.debug_abbrev 1529044 1529044 0 0.0
.debug_aranges 132568 132568 0 0.0
.debug_frame 486476 486476 0 0.0
.debug_info 39187933 39187935 2 0.0
.debug_line 5150433 5150433 0 0.0
.debug_loc 3381394 3381394 0 0.0
.debug_ranges 363816 363816 0 0.0
.debug_str 3483437 3483437 0 0.0
.hbn 509 509 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 144 144 0 0.0
.psram 0 0 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 116400 116400 0 0.0
.rsvd 3188 3188 0 0.0
.shstrtab 293 293 0 0.0
.stack 2048 2048 0 0.0
.strtab 569377 569377 0 0.0
.symtab 172160 172160 0 0.0
.tcm_data 36 36 0 0.0
.tcmcode 3262 3262 0 0.0
.text 0 0 0 0.0
956880 956884 4 0.0
bl702+rpc (read only) 3262 3262 0 0.0
(read/write) 1284827 1284827 0 0.0
.bleromro 6296 6296 0 0.0
.bleromrw 124 124 0 0.0
.boot2 688 688 0 0.0
.bss 75118 75118 0 0.0
.bss_psram 30304 30304 0 0.0
.comment 48 48 0 0.0
.data 4576 4576 0 0.0
.debug_abbrev 1676376 1676376 0 0.0
.debug_aranges 140688 140688 0 0.0
.debug_frame 513896 513896 0 0.0
.debug_info 43480352 43480352 0 0.0
.debug_line 5539882 5539882 0 0.0
.debug_loc 3576086 3576086 0 0.0
.debug_ranges 387352 387352 0 0.0
.debug_str 3885835 3885835 0 0.0
.hbn 509 509 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 160 160 0 0.0
.psram 0 0 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 130144 130144 0 0.0
.rsvd 3188 3188 0 0.0
.shstrtab 293 293 0 0.0
.stack 2048 2048 0 0.0
.strtab 629661 629661 0 0.0
.symtab 190336 190336 0 0.0
.tcm_data 36 36 0 0.0
.tcmcode 3262 3262 0 0.0
.text 0 0 0 0.0
1030860 1030860 0 0.0
cc13x2_26x2 all-clusters-app LP_CC2652R7 (read only) 679883 679883 0 0.0
(read/write) 171564 171564 0 0.0
.bss 81140 81140 0 0.0
.data 3380 3380 0 0.0
.rodata 89995 89995 0 0.0
.text 589576 589576 0 0.0
all-clusters-minimal-app LP_CC2652R7 (read only) 644139 644131 -8 -0.0
(read/write) 157916 157916 0 0.0
.bss 80420 80420 0 0.0
.data 3380 3380 0 0.0
.rodata 79139 79139 0 0.0
.text 564680 564672 -8 -0.0
lock-ftd LP_CC2652R7 (read only) 677415 677415 0 0.0
(read/write) 171592 171592 0 0.0
.bss 78788 78788 0 0.0
.data 3304 3304 0 0.0
.rodata 77415 77415 0 0.0
.text 599520 599520 0 0.0
lock-mtd LP_CC2652R7 (read only) 662203 662203 0 0.0
(read/write) 182068 182068 0 0.0
.bss 74052 74052 0 0.0
.data 3304 3304 0 0.0
.rodata 103507 103507 0 0.0
.text 558216 558216 0 0.0
pump-app LP_CC2652R7 (read only) 690439 690439 0 0.0
(read/write) 159304 159304 0 0.0
.bss 78756 78756 0 0.0
.data 3296 3296 0 0.0
.rodata 91031 91031 0 0.0
.text 598924 598924 0 0.0
pump-controller-app LP_CC2652R7 (read only) 674363 674363 0 0.0
(read/write) 175484 175484 0 0.0
.bss 78860 78860 0 0.0
.data 3292 3292 0 0.0
.rodata 86587 86587 0 0.0
.text 587296 587296 0 0.0
shell LP_CC2652R7 (read only) 671106 671106 0 0.0
(read/write) 182668 182668 0 0.0
.bss 83468 83468 0 0.0
.data 3376 3376 0 0.0
.rodata 86738 86738 0 0.0
.text 584052 584052 0 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 588482 588482 0 0.0
.app_xip_area 464828 464828 0 0.0
.bss 66112 66112 0 0.0
.data 728 728 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
lock cyw930739m2evb_01 (read/write) 592310 592310 0 0.0
.app_xip_area 463360 463360 0 0.0
.bss 71400 71400 0 0.0
.data 736 736 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
ota-requestor-no-progress-logging cyw930739m2evb_01 (read/write) 551862 551862 0 0.0
.app_xip_area 433704 433704 0 0.0
.bss 60656 60656 0 0.0
.data 684 684 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
efr32 lighting-app BRD4161A+rpc (read/write) 976468 976468 0 0.0
.bss 152172 152172 0 0.0
.data 2168 2168 0 0.0
.text 822108 822108 0 0.0
BRD4161A+rs911x (read/write) 1038920 1038920 0 0.0
.bss 186648 186648 0 0.0
.data 2012 2012 0 0.0
.text 850240 850240 0 0.0
BRD4187C (read/write) 1149948 1149948 0 0.0
.bss 138568 138568 0 0.0
.data 2516 2516 0 0.0
.text 984268 984268 0 0.0
lock-app BRD4161A+wf200 (read/write) 1069152 1069152 0 0.0
.bss 158184 158184 0 0.0
.data 2020 2020 0 0.0
.text 908924 908924 0 0.0
window-app BRD4187C (read/write) 1142592 1142592 0 0.0
.bss 139984 139984 0 0.0
.data 2540 2540 0 0.0
.text 975472 975472 0 0.0
esp32 all-clusters-app c3devkit (read only) 1219472 1219472 0 0.0
(read/write) 1790954 1790954 0 0.0
.dram0.bss 76912 76912 0 0.0
.dram0.data 13928 13928 0 0.0
.flash.rodata 248392 248392 0 0.0
.flash.text 1219472 1219472 0 0.0
.iram0.text 71188 71188 0 0.0
m5stack (read only) 1233407 1233407 0 0.0
(read/write) 564187 564187 0 0.0
.dram0.bss 82064 82064 0 0.0
.dram0.data 34224 34224 0 0.0
.flash.rodata 314180 314180 0 0.0
.flash.text 1228023 1228023 0 0.0
.iram0.text 124803 124803 0 0.0
k32w contact k32w0+release (read/write) 662700 662716 16 0.0
.bss 77032 77032 0 0.0
.data 2104 2104 0 0.0
.text 564452 564468 16 0.0
light k32w0+release (read/write) 673400 673400 0 0.0
.bss 74824 74824 0 0.0
.data 2060 2060 0 0.0
.text 593788 593788 0 0.0
lock k32w0+release (read/write) 634244 634244 0 0.0
.bss 75584 75584 0 0.0
.data 2080 2080 0 0.0
.text 553852 553852 0 0.0
linux all-clusters-app debug (read only) 3114537 3114537 0 0.0
(read/write) 158600 158600 0 0.0
.bss 62464 62464 0 0.0
.data 2304 2304 0 0.0
.data.rel.ro 87240 87240 0 0.0
.dynamic 608 608 0 0.0
.got 4768 4768 0 0.0
.init 27 27 0 0.0
.init_array 1184 1184 0 0.0
.rodata 281611 281611 0 0.0
.text 2648242 2648242 0 0.0
all-clusters-minimal-app debug (read only) 2938137 2938137 0 0.0
(read/write) 150000 150000 0 0.0
.bss 61664 61664 0 0.0
.data 2272 2272 0 0.0
.data.rel.ro 79608 79608 0 0.0
.dynamic 608 608 0 0.0
.got 4680 4680 0 0.0
.init 27 27 0 0.0
.init_array 1160 1160 0 0.0
.rodata 281035 281035 0 0.0
.text 2475458 2475458 0 0.0
bridge-app debug (read only) 2497209 2497209 0 0.0
(read/write) 133120 133120 0 0.0
.bss 52544 52544 0 0.0
.data 3792 3792 0 0.0
.data.rel.ro 70696 70696 0 0.0
.dynamic 608 608 0 0.0
.got 4600 4600 0 0.0
.init 27 27 0 0.0
.init_array 856 856 0 0.0
.rodata 212320 212320 0 0.0
.text 2113106 2113106 0 0.0
chip-tool debug (read only) 11182713 11182713 0 0.0
(read/write) 646808 646808 0 0.0
.bss 25912 25912 0 0.0
.data 2754 2754 0 0.0
.data.rel.ro 611568 611568 0 0.0
.dynamic 608 608 0 0.0
.got 5184 5184 0 0.0
.init 27 27 0 0.0
.init_array 728 728 0 0.0
.rodata 605029 605029 0 0.0
.text 9078820 9078820 0 0.0
chip-tool-ipv6only arm64 (read only) 10595932 10595932 0 0.0
(read/write) 695928 695928 0 0.0
.bss 33912 33912 0 0.0
.data 2768 2768 0 0.0
.data.rel.ro 640376 640376 0 0.0
.dynamic 560 560 0 0.0
.got 13832 13832 0 0.0
.init 24 24 0 0.0
.init_array 200 200 0 0.0
.rodata 535180 535180 0 0.0
.text 8412948 8412948 0 0.0
lighting-app debug+rpc (read only) 2664337 2664337 0 0.0
(read/write) 132488 132488 0 0.0
.bss 49984 49984 0 0.0
.data 2288 2288 0 0.0
.data.rel.ro 74024 74024 0 0.0
.dynamic 608 608 0 0.0
.got 4632 4632 0 0.0
.init 27 27 0 0.0
.init_array 928 928 0 0.0
.rodata 228224 228224 0 0.0
.text 2259362 2259362 0 0.0
lock-app debug (read only) 2623465 2623465 0 0.0
(read/write) 127472 127472 0 0.0
.bss 48416 48416 0 0.0
.data 1904 1904 0 0.0
.data.rel.ro 70936 70936 0 0.0
.dynamic 608 608 0 0.0
.got 4664 4664 0 0.0
.init 27 27 0 0.0
.init_array 904 904 0 0.0
.rodata 244488 244488 0 0.0
.text 2207074 2207074 0 0.0
ota-provider-app debug (read only) 2197337 2197337 0 0.0
(read/write) 105904 105904 0 0.0
.bss 46592 46592 0 0.0
.data 2080 2080 0 0.0
.data.rel.ro 52120 52120 0 0.0
.dynamic 608 608 0 0.0
.got 3728 3728 0 0.0
.init 27 27 0 0.0
.init_array 744 744 0 0.0
.rodata 195784 195784 0 0.0
.text 1861650 1861650 0 0.0
ota-requestor-app debug (read only) 2358841 2358841 0 0.0
(read/write) 113952 113952 0 0.0
.bss 49088 49088 0 0.0
.data 2448 2448 0 0.0
.data.rel.ro 57208 57208 0 0.0
.dynamic 608 608 0 0.0
.got 3728 3728 0 0.0
.init 27 27 0 0.0
.init_array 824 824 0 0.0
.rodata 202512 202512 0 0.0
.text 2007426 2007426 0 0.0
shell debug (read only) 2646993 2646993 0 0.0
(read/write) 143064 143064 0 0.0
.bss 57864 57864 0 0.0
.data 1264 1264 0 0.0
.data.rel.ro 78136 78136 0 0.0
.dynamic 608 608 0 0.0
.got 4128 4128 0 0.0
.init 27 27 0 0.0
.init_array 1032 1032 0 0.0
.rodata 239858 239858 0 0.0
.text 2247426 2247426 0 0.0
thermostat-no-ble arm64 (read only) 2478044 2478044 0 0.0
(read/write) 145016 145016 0 0.0
.bss 55336 55336 0 0.0
.data 1816 1816 0 0.0
.data.rel.ro 78640 78640 0 0.0
.dynamic 560 560 0 0.0
.got 5192 5192 0 0.0
.init 24 24 0 0.0
.init_array 432 432 0 0.0
.rodata 149560 149560 0 0.0
.text 2067888 2067888 0 0.0
tv-app debug (read only) 3286737 3286737 0 0.0
(read/write) 262312 262312 0 0.0
.bss 170808 170808 0 0.0
.data 4256 4256 0 0.0
.data.rel.ro 80544 80544 0 0.0
.dynamic 608 608 0 0.0
.got 5000 5000 0 0.0
.init 27 27 0 0.0
.init_array 1064 1064 0 0.0
.rodata 268856 268856 0 0.0
.text 2823554 2823554 0 0.0
tv-casting-app debug (read only) 5645937 5645937 0 0.0
(read/write) 162672 162672 0 0.0
.bss 52184 52184 0 0.0
.data 1936 1936 0 0.0
.data.rel.ro 101960 101960 0 0.0
.dynamic 608 608 0 0.0
.got 4920 4920 0 0.0
.init 27 27 0 0.0
.init_array 1040 1040 0 0.0
.rodata 359321 359321 0 0.0
.text 5009026 5009026 0 0.0
mbed all-clusters-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2542924 2542924 0 0.0
.bss 222648 222648 0 0.0
.data 5592 5592 0 0.0
.text 1505540 1505540 0 0.0
all-clusters-minimal-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2491312 2491312 0 0.0
.bss 221920 221920 0 0.0
.data 5568 5568 0 0.0
.text 1453908 1453908 0 0.0
lighting-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2477868 2477868 0 0.0
.bss 216628 216628 0 0.0
.data 5848 5848 0 0.0
.text 1440484 1440484 0 0.0
lock-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2463832 2463832 0 0.0
.bss 214932 214932 0 0.0
.data 5872 5872 0 0.0
.text 1426476 1426476 0 0.0
pigweed-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 1154028 1154028 0 0.0
.bss 10944 10944 0 0.0
.data 4520 4520 0 0.0
.text 117412 117412 0 0.0
shell CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2425636 2425636 0 0.0
.bss 214944 214944 0 0.0
.data 5752 5752 0 0.0
.text 1388252 1388252 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read/write) 1191003 1191003 0 0.0
bss 145205 145205 0 0.0
rodata 144544 144544 0 0.0
text 820134 820134 0 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1361266 1361266 0 0.0
bss 105144 105144 0 0.0
rodata 211640 211640 0 0.0
text 759974 759974 0 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read/write) 1136647 1136647 0 0.0
bss 144440 144440 0 0.0
rodata 120860 120860 0 0.0
text 790290 790290 0 0.0
light-switch-app nrf52840dk_nrf52840 (read/write) 1099159 1099159 0 0.0
bss 136822 136822 0 0.0
rodata 120524 120524 0 0.0
text 760836 760836 0 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1267502 1267502 0 0.0
bss 98796 98796 0 0.0
rodata 176548 176548 0 0.0
text 707740 707740 0 0.0
lighting-app nrf52840dk_nrf52840+rpc (read/write) 1144131 1144131 0 0.0
bss 147371 147371 0 0.0
rodata 115640 115640 0 0.0
text 798772 798772 0 0.0
nrf52840dongle_nrf52840 (read/write) 1086995 1086995 0 0.0
bss 154348 154348 0 0.0
rodata 94224 94224 0 0.0
text 754094 754094 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 1082018 1082018 0 0.0
bss 143026 143026 0 0.0
rodata 117684 117684 0 0.0
text 738240 738240 0 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1267502 1267502 0 0.0
bss 98796 98796 0 0.0
rodata 176548 176548 0 0.0
text 707740 707740 0 0.0
lock-app nrf52840dk_nrf52840 (read/write) 1135927 1135927 0 0.0
bss 137870 137870 0 0.0
rodata 143708 143708 0 0.0
text 773374 773374 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 1038486 1038486 0 0.0
bss 133755 133755 0 0.0
rodata 136112 136112 0 0.0
text 685534 685530 -4 -0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1304634 1304634 0 0.0
bss 99878 99878 0 0.0
rodata 199788 199788 0 0.0
text 720528 720528 0 0.0
pigweed-app nrf52840dk_nrf52840 (read/write) 580955 580955 0 0.0
bss 75169 75169 0 0.0
rodata 45224 45224 0 0.0
text 399076 399076 0 0.0
pump-app nrf52840dk_nrf52840 (read/write) 1089875 1089875 0 0.0
bss 136651 136651 0 0.0
rodata 118616 118616 0 0.0
text 753642 753642 0 0.0
pump-controller-app nrf52840dk_nrf52840 (read/write) 1075811 1075811 0 0.0
bss 136418 136418 0 0.0
rodata 115096 115096 0 0.0
text 743352 743352 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read only) 842056 842056 0 0.0
(read/write) 1749660 1749660 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 188624 188624 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2664 2664 0 0.0
.debug_abbrev 1238156 1238156 0 0.0
.debug_aranges 110768 110768 0 0.0
.debug_frame 371956 371956 0 0.0
.debug_info 27060315 27060316 1 0.0
.debug_line 3709696 3709696 0 0.0
.debug_loc 3624770 3624770 0 0.0
.debug_ranges 346584 346584 0 0.0
.debug_str 3453864 3453864 0 0.0
.heap 842056 842056 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 572205 572205 0 0.0
.symtab 422128 422128 0 0.0
.text 0 0 0 0.0
1549984 1549984 0 0.0
.zero.table 8 8 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read only) 842784 842784 0 0.0
(read/write) 1692188 1692188 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 187896 187896 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2664 2664 0 0.0
.debug_abbrev 1230047 1230047 0 0.0
.debug_aranges 110240 110240 0 0.0
.debug_frame 375012 375012 0 0.0
.debug_info 26797114 26797115 1 0.0
.debug_line 3728601 3728601 0 0.0
.debug_loc 3612376 3612376 0 0.0
.debug_ranges 345200 345200 0 0.0
.debug_str 3442876 3442876 0 0.0
.heap 842784 842784 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 536294 536294 0 0.0
.symtab 408560 408560 0 0.0
.text 1493240 1493240 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
light cy8ckit_062s2_43012 (read only) 850976 850976 0 0.0
(read/write) 1610404 1610404 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 179912 179912 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2456 2456 0 0.0
.debug_abbrev 1064846 1064846 0 0.0
.debug_aranges 102440 102440 0 0.0
.debug_frame 345344 345344 0 0.0
.debug_info 22259724 22259725 1 0.0
.debug_line 3295718 3295718 0 0.0
.debug_loc 3310296 3310296 0 0.0
.debug_ranges 309336 309336 0 0.0
.debug_str 3248462 3248462 0 0.0
.heap 850976 850976 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 472619 472619 0 0.0
.symtab 376928 376928 0 0.0
.text 1419648 1419648 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
lock cy8ckit_062s2_43012 (read only) 845984 845984 0 0.0
(read/write) 1644356 1644356 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 184888 184888 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2472 2472 0 0.0
.debug_abbrev 1066756 1066756 0 0.0
.debug_aranges 102824 102824 0 0.0
.debug_frame 347144 347144 0 0.0
.debug_info 22478113 22478113 0 0.0
.debug_line 3295604 3295604 0 0.0
.debug_loc 3331730 3331730 0 0.0
.debug_ranges 311192 311192 0 0.0
.debug_str 3264300 3264300 0 0.0
.heap 845984 845984 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 475336 475336 0 0.0
.symtab 378928 378928 0 0.0
.text 1448608 1448608 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
qpg lighting-app qpg6105+debug (read/write) 1151236 1151236 0 0.0
.bss 100348 100348 0 0.0
.data 840 840 0 0.0
.text 598336 598336 0 0.0
lock-app qpg6105+debug (read/write) 1117556 1117556 0 0.0
.bss 95828 95828 0 0.0
.data 836 836 0 0.0
.text 564652 564652 0 0.0
telink all-clusters-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1071532 1071532 0 0.0
bss 98856 98856 0 0.0
text 726250 726250 0 0.0
all-clusters-minimal-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1010824 1010824 0 0.0
bss 98080 98080 0 0.0
text 691406 691406 0 0.0
light-switch-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 932280 932280 0 0.0
bss 90320 90320 0 0.0
text 638030 638032 2 0.0
lighting-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1010248 1010248 0 0.0
bss 98380 98380 0 0.0
text 703808 703808 0 0.0
ota-requestor-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 945884 945884 0 0.0
bss 91276 91276 0 0.0
text 649286 649288 2 0.0
thermostat tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 935428 935428 0 0.0
bss 91712 91712 0 0.0
text 638714 638718 4 0.0

@github-actions
Copy link

github-actions bot commented Jan 4, 2023

PR #24185: Size comparison from e3a3aaa to 2fcfaf3

Increases (7 builds for cc13x2_26x2, esp32, nrfconnect, psoc6, telink)
platform target config section e3a3aaa 2fcfaf3 change % change
cc13x2_26x2 pump-app LP_CC2652R7 (read only) 690431 690439 8 0.0
.text 598916 598924 8 0.0
esp32 all-clusters-app c3devkit (read only) 1219518 1219520 2 0.0
.flash.text 1219518 1219520 2 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read/write) 1169971 1169987 16 0.0
text 810128 810132 4 0.0
pump-controller-app nrf52840dk_nrf52840 text 733274 733278 4 0.0
psoc6 all-clusters-minimal cy8ckit_062s2_43012 .debug_info 26802301 26802303 2 0.0
light cy8ckit_062s2_43012 .debug_info 22264270 22264272 2 0.0
telink all-clusters-app tlsr9518adk80d text 724610 724612 2 0.0
Decreases (12 builds for bl602, bl702, cc13x2_26x2, nrfconnect, psoc6, qpg, telink)
platform target config section e3a3aaa 2fcfaf3 change % change
bl602 lighting-app bl602+rpc .text 1051992 1051988 -4 -0.0
bl702 lighting-app bl702 .debug_info 39192217 39192216 -1 -0.0
.text 956760 956758 -2 -0.0
bl702+rpc (read/write) 1287331 1287315 -16 -0.0
.debug_info 43484884 43484882 -2 -0.0
.text 1033300 1033296 -4 -0.0
cc13x2_26x2 pump-app LP_CC2652R7 (read/write) 159312 159304 -8 -0.0
nrfconnect all-clusters-app nrf7002dk_nrf5340_cpuapp text 755184 755180 -4 -0.0
lock-app nrf52840dk_nrf52840 (read/write) 1114207 1114191 -16 -0.0
text 763076 763072 -4 -0.0
nrf5340dk_nrf5340_cpuapp (read/write) 1025454 1025438 -16 -0.0
text 680438 680434 -4 -0.0
pump-app nrf52840dk_nrf52840 (read/write) 1069147 1069131 -16 -0.0
text 743568 743564 -4 -0.0
psoc6 lock cy8ckit_062s2_43012 .debug_info 22482630 22482629 -1 -0.0
qpg lock-app qpg6105+debug (read/write) 1117540 1117532 -8 -0.0
.text 564636 564628 -8 -0.0
telink light-switch-app tlsr9518adk80d text 636374 636372 -2 -0.0
ota-requestor-app tlsr9518adk80d (read/write) 942876 942868 -8 -0.0
text 647630 647628 -2 -0.0
Full report (70 builds for bl602, bl702, cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
platform target config section e3a3aaa 2fcfaf3 change % change
bl602 lighting-app bl602 (read/write) 1343498 1343498 0 0.0
.bss 86510 86510 0 0.0
.data 9584 9584 0 0.0
.text 1021038 1021038 0 0.0
bl602+rpc (read/write) 1388930 1388930 0 0.0
.bss 94550 94550 0 0.0
.data 9976 9976 0 0.0
.text 1051992 1051988 -4 -0.0
bl702 lighting-app bl702 (read only) 3262 3262 0 0.0
(read/write) 1195711 1195711 0 0.0
.bleromro 6296 6296 0 0.0
.bleromrw 124 124 0 0.0
.boot2 688 688 0 0.0
.bss 66590 66590 0 0.0
.bss_psram 30048 30048 0 0.0
.comment 48 48 0 0.0
.data 4048 4048 0 0.0
.debug_abbrev 1529205 1529205 0 0.0
.debug_aranges 132568 132568 0 0.0
.debug_frame 486464 486464 0 0.0
.debug_info 39192217 39192216 -1 -0.0
.debug_line 5203286 5203286 0 0.0
.debug_loc 3381349 3381349 0 0.0
.debug_ranges 363816 363816 0 0.0
.debug_str 3486044 3486044 0 0.0
.hbn 509 509 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 144 144 0 0.0
.psram 0 0 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 116400 116400 0 0.0
.rsvd 3188 3188 0 0.0
.shstrtab 293 293 0 0.0
.stack 2048 2048 0 0.0
.strtab 569731 569731 0 0.0
.symtab 172128 172128 0 0.0
.tcm_data 36 36 0 0.0
.tcmcode 3262 3262 0 0.0
.text 0 0 0 0.0
956760 956758 -2 -0.0
bl702+rpc (read only) 3262 3262 0 0.0
(read/write) 1287331 1287315 -16 -0.0
.bleromro 6296 6296 0 0.0
.bleromrw 124 124 0 0.0
.boot2 688 688 0 0.0
.bss 74622 74622 0 0.0
.bss_psram 30304 30304 0 0.0
.comment 48 48 0 0.0
.data 4584 4584 0 0.0
.debug_abbrev 1676565 1676565 0 0.0
.debug_aranges 140688 140688 0 0.0
.debug_frame 513960 513960 0 0.0
.debug_info 43484884 43484882 -2 -0.0
.debug_line 5599168 5599168 0 0.0
.debug_loc 3576316 3576316 0 0.0
.debug_ranges 387352 387352 0 0.0
.debug_str 3888442 3888442 0 0.0
.hbn 509 509 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 160 160 0 0.0
.psram 0 0 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 130688 130688 0 0.0
.rsvd 3188 3188 0 0.0
.shstrtab 293 293 0 0.0
.stack 2048 2048 0 0.0
.strtab 630062 630062 0 0.0
.symtab 190432 190432 0 0.0
.tcm_data 36 36 0 0.0
.tcmcode 3262 3262 0 0.0
.text 0 0 0 0.0
1033300 1033296 -4 -0.0
cc13x2_26x2 all-clusters-app LP_CC2652R7 (read only) 679883 679883 0 0.0
(read/write) 171564 171564 0 0.0
.bss 81140 81140 0 0.0
.data 3380 3380 0 0.0
.rodata 89995 89995 0 0.0
.text 589576 589576 0 0.0
all-clusters-minimal-app LP_CC2652R7 (read only) 644139 644139 0 0.0
(read/write) 157916 157916 0 0.0
.bss 80420 80420 0 0.0
.data 3380 3380 0 0.0
.rodata 79139 79139 0 0.0
.text 564680 564680 0 0.0
lock-ftd LP_CC2652R7 (read only) 677415 677415 0 0.0
(read/write) 171592 171592 0 0.0
.bss 78788 78788 0 0.0
.data 3304 3304 0 0.0
.rodata 77415 77415 0 0.0
.text 599520 599520 0 0.0
lock-mtd LP_CC2652R7 (read only) 662203 662203 0 0.0
(read/write) 182068 182068 0 0.0
.bss 74052 74052 0 0.0
.data 3304 3304 0 0.0
.rodata 103507 103507 0 0.0
.text 558216 558216 0 0.0
pump-app LP_CC2652R7 (read only) 690431 690439 8 0.0
(read/write) 159312 159304 -8 -0.0
.bss 78756 78756 0 0.0
.data 3296 3296 0 0.0
.rodata 91031 91031 0 0.0
.text 598916 598924 8 0.0
pump-controller-app LP_CC2652R7 (read only) 674363 674363 0 0.0
(read/write) 175484 175484 0 0.0
.bss 78860 78860 0 0.0
.data 3292 3292 0 0.0
.rodata 86587 86587 0 0.0
.text 587296 587296 0 0.0
shell LP_CC2652R7 (read only) 671106 671106 0 0.0
(read/write) 182668 182668 0 0.0
.bss 83468 83468 0 0.0
.data 3376 3376 0 0.0
.rodata 86738 86738 0 0.0
.text 584052 584052 0 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 588482 588482 0 0.0
.app_xip_area 464828 464828 0 0.0
.bss 66112 66112 0 0.0
.data 728 728 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
lock cyw930739m2evb_01 (read/write) 592310 592310 0 0.0
.app_xip_area 463360 463360 0 0.0
.bss 71400 71400 0 0.0
.data 736 736 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
ota-requestor-no-progress-logging cyw930739m2evb_01 (read/write) 551862 551862 0 0.0
.app_xip_area 433704 433704 0 0.0
.bss 60656 60656 0 0.0
.data 684 684 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
efr32 lighting-app BRD4161A+rpc (read/write) 976452 976452 0 0.0
.bss 152172 152172 0 0.0
.data 2168 2168 0 0.0
.text 822092 822092 0 0.0
BRD4161A+rs911x (read/write) 1039056 1039056 0 0.0
.bss 186648 186648 0 0.0
.data 2012 2012 0 0.0
.text 850376 850376 0 0.0
BRD4187C (read/write) 1149924 1149924 0 0.0
.bss 138568 138568 0 0.0
.data 2516 2516 0 0.0
.text 984244 984244 0 0.0
lock-app BRD4161A+wf200 (read/write) 1069168 1069168 0 0.0
.bss 158184 158184 0 0.0
.data 2020 2020 0 0.0
.text 908940 908940 0 0.0
window-app BRD4187C (read/write) 1142568 1142568 0 0.0
.bss 139984 139984 0 0.0
.data 2540 2540 0 0.0
.text 975448 975448 0 0.0
esp32 all-clusters-app c3devkit (read only) 1219518 1219520 2 0.0
(read/write) 1791050 1791050 0 0.0
.dram0.bss 76912 76912 0 0.0
.dram0.data 13928 13928 0 0.0
.flash.rodata 248488 248488 0 0.0
.flash.text 1219518 1219520 2 0.0
.iram0.text 71188 71188 0 0.0
m5stack (read only) 1233427 1233427 0 0.0
(read/write) 564263 564263 0 0.0
.dram0.bss 82064 82064 0 0.0
.dram0.data 34224 34224 0 0.0
.flash.rodata 314256 314256 0 0.0
.flash.text 1228043 1228043 0 0.0
.iram0.text 124803 124803 0 0.0
k32w contact k32w0+release (read/write) 662700 662700 0 0.0
.bss 77032 77032 0 0.0
.data 2104 2104 0 0.0
.text 564452 564452 0 0.0
light k32w0+release (read/write) 673400 673400 0 0.0
.bss 74824 74824 0 0.0
.data 2060 2060 0 0.0
.text 593788 593788 0 0.0
lock k32w0+release (read/write) 634244 634244 0 0.0
.bss 75584 75584 0 0.0
.data 2080 2080 0 0.0
.text 553852 553852 0 0.0
linux all-clusters-app debug (read only) 3115481 3115481 0 0.0
(read/write) 158568 158568 0 0.0
.bss 62432 62432 0 0.0
.data 2304 2304 0 0.0
.data.rel.ro 87240 87240 0 0.0
.dynamic 608 608 0 0.0
.got 4768 4768 0 0.0
.init 27 27 0 0.0
.init_array 1184 1184 0 0.0
.rodata 281835 281835 0 0.0
.text 2648962 2648962 0 0.0
all-clusters-minimal-app debug (read only) 2938921 2938921 0 0.0
(read/write) 149968 149968 0 0.0
.bss 61632 61632 0 0.0
.data 2272 2272 0 0.0
.data.rel.ro 79608 79608 0 0.0
.dynamic 608 608 0 0.0
.got 4680 4680 0 0.0
.init 27 27 0 0.0
.init_array 1160 1160 0 0.0
.rodata 281227 281227 0 0.0
.text 2476050 2476050 0 0.0
bridge-app debug (read only) 2497897 2497897 0 0.0
(read/write) 133088 133088 0 0.0
.bss 52512 52512 0 0.0
.data 3792 3792 0 0.0
.data.rel.ro 70696 70696 0 0.0
.dynamic 608 608 0 0.0
.got 4600 4600 0 0.0
.init 27 27 0 0.0
.init_array 856 856 0 0.0
.rodata 212512 212512 0 0.0
.text 2113602 2113602 0 0.0
chip-tool debug (read only) 11142441 11142441 0 0.0
(read/write) 646776 646776 0 0.0
.bss 25880 25880 0 0.0
.data 2754 2754 0 0.0
.data.rel.ro 611568 611568 0 0.0
.dynamic 608 608 0 0.0
.got 5184 5184 0 0.0
.init 27 27 0 0.0
.init_array 728 728 0 0.0
.rodata 605765 605765 0 0.0
.text 9037812 9037812 0 0.0
chip-tool-ipv6only arm64 (read only) 10557020 10557020 0 0.0
(read/write) 695928 695928 0 0.0
.bss 33912 33912 0 0.0
.data 2768 2768 0 0.0
.data.rel.ro 640376 640376 0 0.0
.dynamic 560 560 0 0.0
.got 13832 13832 0 0.0
.init 24 24 0 0.0
.init_array 200 200 0 0.0
.rodata 535452 535452 0 0.0
.text 8373764 8373764 0 0.0
lighting-app debug+rpc (read only) 2665153 2665153 0 0.0
(read/write) 132456 132456 0 0.0
.bss 49952 49952 0 0.0
.data 2288 2288 0 0.0
.data.rel.ro 74024 74024 0 0.0
.dynamic 608 608 0 0.0
.got 4632 4632 0 0.0
.init 27 27 0 0.0
.init_array 928 928 0 0.0
.rodata 228448 228448 0 0.0
.text 2259954 2259954 0 0.0
lock-app debug (read only) 2624249 2624249 0 0.0
(read/write) 127440 127440 0 0.0
.bss 48384 48384 0 0.0
.data 1904 1904 0 0.0
.data.rel.ro 70936 70936 0 0.0
.dynamic 608 608 0 0.0
.got 4664 4664 0 0.0
.init 27 27 0 0.0
.init_array 904 904 0 0.0
.rodata 244680 244680 0 0.0
.text 2207666 2207666 0 0.0
ota-provider-app debug (read only) 2198169 2198169 0 0.0
(read/write) 105872 105872 0 0.0
.bss 46560 46560 0 0.0
.data 2080 2080 0 0.0
.data.rel.ro 52120 52120 0 0.0
.dynamic 608 608 0 0.0
.got 3728 3728 0 0.0
.init 27 27 0 0.0
.init_array 744 744 0 0.0
.rodata 196008 196008 0 0.0
.text 1862258 1862258 0 0.0
ota-requestor-app debug (read only) 2359753 2359753 0 0.0
(read/write) 113920 113920 0 0.0
.bss 49056 49056 0 0.0
.data 2448 2448 0 0.0
.data.rel.ro 57208 57208 0 0.0
.dynamic 608 608 0 0.0
.got 3728 3728 0 0.0
.init 27 27 0 0.0
.init_array 824 824 0 0.0
.rodata 202704 202704 0 0.0
.text 2008146 2008146 0 0.0
shell debug (read only) 2647809 2647809 0 0.0
(read/write) 143032 143032 0 0.0
.bss 57832 57832 0 0.0
.data 1264 1264 0 0.0
.data.rel.ro 78136 78136 0 0.0
.dynamic 608 608 0 0.0
.got 4128 4128 0 0.0
.init 27 27 0 0.0
.init_array 1032 1032 0 0.0
.rodata 240050 240050 0 0.0
.text 2248050 2248050 0 0.0
thermostat-no-ble arm64 (read only) 2479276 2479276 0 0.0
(read/write) 145016 145016 0 0.0
.bss 55336 55336 0 0.0
.data 1816 1816 0 0.0
.data.rel.ro 78640 78640 0 0.0
.dynamic 560 560 0 0.0
.got 5192 5192 0 0.0
.init 24 24 0 0.0
.init_array 432 432 0 0.0
.rodata 149704 149704 0 0.0
.text 2068976 2068976 0 0.0
tv-app debug (read only) 3287569 3287569 0 0.0
(read/write) 262280 262280 0 0.0
.bss 170776 170776 0 0.0
.data 4256 4256 0 0.0
.data.rel.ro 80544 80544 0 0.0
.dynamic 608 608 0 0.0
.got 5000 5000 0 0.0
.init 27 27 0 0.0
.init_array 1064 1064 0 0.0
.rodata 269080 269080 0 0.0
.text 2824162 2824162 0 0.0
tv-casting-app debug (read only) 5603169 5603169 0 0.0
(read/write) 162640 162640 0 0.0
.bss 52152 52152 0 0.0
.data 1936 1936 0 0.0
.data.rel.ro 101960 101960 0 0.0
.dynamic 608 608 0 0.0
.got 4920 4920 0 0.0
.init 27 27 0 0.0
.init_array 1040 1040 0 0.0
.rodata 360249 360249 0 0.0
.text 4965330 4965330 0 0.0
mbed all-clusters-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2543076 2543076 0 0.0
.bss 222648 222648 0 0.0
.data 5592 5592 0 0.0
.text 1505692 1505692 0 0.0
all-clusters-minimal-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2491464 2491464 0 0.0
.bss 221920 221920 0 0.0
.data 5568 5568 0 0.0
.text 1454060 1454060 0 0.0
lighting-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2477956 2477956 0 0.0
.bss 216628 216628 0 0.0
.data 5848 5848 0 0.0
.text 1440572 1440572 0 0.0
lock-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2463984 2463984 0 0.0
.bss 214932 214932 0 0.0
.data 5872 5872 0 0.0
.text 1426628 1426628 0 0.0
pigweed-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 1154028 1154028 0 0.0
.bss 10944 10944 0 0.0
.data 4520 4520 0 0.0
.text 117412 117412 0 0.0
shell CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2425788 2425788 0 0.0
.bss 214944 214944 0 0.0
.data 5752 5752 0 0.0
.text 1388404 1388404 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read/write) 1169971 1169987 16 0.0
bss 143621 143621 0 0.0
rodata 136368 136368 0 0.0
text 810128 810132 4 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1349118 1349118 0 0.0
bss 105132 105132 0 0.0
rodata 204292 204292 0 0.0
text 755184 755180 -4 -0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read/write) 1115615 1115615 0 0.0
bss 142856 142856 0 0.0
rodata 112684 112684 0 0.0
text 780288 780288 0 0.0
light-switch-app nrf52840dk_nrf52840 (read/write) 1077899 1077899 0 0.0
bss 135238 135238 0 0.0
rodata 112368 112368 0 0.0
text 750564 750564 0 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1255370 1255370 0 0.0
bss 98784 98784 0 0.0
rodata 169200 169200 0 0.0
text 702946 702946 0 0.0
lighting-app nrf52840dk_nrf52840+rpc (read/write) 1122587 1122587 0 0.0
bss 145803 145803 0 0.0
rodata 107344 107344 0 0.0
text 788354 788354 0 0.0
nrf52840dongle_nrf52840 (read/write) 1067199 1067199 0 0.0
bss 153988 153988 0 0.0
rodata 86012 86012 0 0.0
text 744058 744058 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 1069158 1069158 0 0.0
bss 143014 143014 0 0.0
rodata 109944 109944 0 0.0
text 733120 733120 0 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1255370 1255370 0 0.0
bss 98784 98784 0 0.0
rodata 169200 169200 0 0.0
text 702946 702946 0 0.0
lock-app nrf52840dk_nrf52840 (read/write) 1114207 1114191 -16 -0.0
bss 136286 136286 0 0.0
rodata 135244 135244 0 0.0
text 763076 763072 -4 -0.0
nrf5340dk_nrf5340_cpuapp (read/write) 1025454 1025438 -16 -0.0
bss 133743 133743 0 0.0
rodata 128168 128168 0 0.0
text 680438 680434 -4 -0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1292102 1292102 0 0.0
bss 99866 99866 0 0.0
rodata 192136 192136 0 0.0
text 715708 715708 0 0.0
pigweed-app nrf52840dk_nrf52840 (read/write) 573207 573207 0 0.0
bss 74821 74821 0 0.0
rodata 44612 44612 0 0.0
text 393616 393616 0 0.0
pump-app nrf52840dk_nrf52840 (read/write) 1069147 1069131 -16 -0.0
bss 135067 135067 0 0.0
rodata 110784 110784 0 0.0
text 743568 743564 -4 -0.0
pump-controller-app nrf52840dk_nrf52840 (read/write) 1055067 1055067 0 0.0
bss 134834 134834 0 0.0
rodata 107264 107264 0 0.0
text 733274 733278 4 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read only) 842056 842056 0 0.0
(read/write) 1749796 1749796 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 188624 188624 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2664 2664 0 0.0
.debug_abbrev 1238094 1238094 0 0.0
.debug_aranges 110768 110768 0 0.0
.debug_frame 371956 371956 0 0.0
.debug_info 27065539 27065539 0 0.0
.debug_line 3720445 3720445 0 0.0
.debug_loc 3624970 3624970 0 0.0
.debug_ranges 346592 346592 0 0.0
.debug_str 3456857 3456857 0 0.0
.heap 842056 842056 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 572583 572583 0 0.0
.symtab 422128 422128 0 0.0
.text 1550120 1550120 0 0.0
.zero.table 8 8 0 0.0
text 0 0 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read only) 842784 842784 0 0.0
(read/write) 1692324 1692324 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 187896 187896 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2664 2664 0 0.0
.debug_abbrev 1229985 1229985 0 0.0
.debug_aranges 110240 110240 0 0.0
.debug_frame 375012 375012 0 0.0
.debug_info 26802301 26802303 2 0.0
.debug_line 3739343 3739343 0 0.0
.debug_loc 3612576 3612576 0 0.0
.debug_ranges 345208 345208 0 0.0
.debug_str 3445869 3445869 0 0.0
.heap 842784 842784 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 536672 536672 0 0.0
.symtab 408560 408560 0 0.0
.text 1493376 1493376 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
light cy8ckit_062s2_43012 (read only) 850976 850976 0 0.0
(read/write) 1610540 1610540 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 179912 179912 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2456 2456 0 0.0
.debug_abbrev 1064762 1064762 0 0.0
.debug_aranges 102440 102440 0 0.0
.debug_frame 345344 345344 0 0.0
.debug_info 22264270 22264272 2 0.0
.debug_line 3304372 3304372 0 0.0
.debug_loc 3310498 3310498 0 0.0
.debug_ranges 309344 309344 0 0.0
.debug_str 3251455 3251455 0 0.0
.heap 850976 850976 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 472997 472997 0 0.0
.symtab 376928 376928 0 0.0
.text 1419784 1419784 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
lock cy8ckit_062s2_43012 (read only) 845984 845984 0 0.0
(read/write) 1644476 1644476 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 184888 184888 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2472 2472 0 0.0
.debug_abbrev 1066580 1066580 0 0.0
.debug_aranges 102824 102824 0 0.0
.debug_frame 347144 347144 0 0.0
.debug_info 22482630 22482629 -1 -0.0
.debug_line 3305479 3305479 0 0.0
.debug_loc 3331945 3331945 0 0.0
.debug_ranges 311200 311200 0 0.0
.debug_str 3267293 3267293 0 0.0
.heap 845984 845984 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 475714 475714 0 0.0
.symtab 378928 378928 0 0.0
.text 1448728 1448728 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
qpg lighting-app qpg6105+debug (read/write) 1151220 1151220 0 0.0
.bss 100348 100348 0 0.0
.data 840 840 0 0.0
.text 598320 598320 0 0.0
lock-app qpg6105+debug (read/write) 1117540 1117532 -8 -0.0
.bss 95828 95828 0 0.0
.data 836 836 0 0.0
.text 564636 564628 -8 -0.0
telink all-clusters-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1068540 1068540 0 0.0
bss 97632 97632 0 0.0
text 724610 724612 2 0.0
all-clusters-minimal-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1007832 1007832 0 0.0
bss 96856 96856 0 0.0
text 689766 689766 0 0.0
light-switch-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 929280 929280 0 0.0
bss 89104 89104 0 0.0
text 636374 636372 -2 -0.0
lighting-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1007240 1007240 0 0.0
bss 97156 97156 0 0.0
text 702148 702148 0 0.0
ota-requestor-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 942876 942868 -8 -0.0
bss 90052 90052 0 0.0
text 647630 647628 -2 -0.0
thermostat tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 932444 932444 0 0.0
bss 90496 90496 0 0.0
text 637074 637074 0 0.0

Created a change in the `external_content` extension so that
links to content that is also being copied to the _build folder
will point to their new location instead. This enables linking
to sections on other pages.

This change also enables link checking for sections on other
pages, and therefore also includes a fix to some previously
broken section links.

Signed-off-by: Gaute Svanes Lunde <gaute.lunde@nordicsemi.no>
@github-actions
Copy link

github-actions bot commented Jan 6, 2023

PR #24185: Size comparison from 48284ae to 8778d26

Increases (12 builds for bl602, cc13x2_26x2, efr32, esp32, nrfconnect, psoc6, telink)
platform target config section 48284ae 8778d26 change % change
bl602 lighting-app bl602 (read/write) 1344618 1344626 8 0.0
.text 1022160 1022162 2 0.0
cc13x2_26x2 lock-mtd LP_CC2652R7 (read only) 660811 660819 8 0.0
.text 556824 556832 8 0.0
efr32 lighting-app BRD4161A+rpc (read/write) 975108 975124 16 0.0
.text 820748 820764 16 0.0
esp32 all-clusters-app c3devkit (read only) 1219576 1219578 2 0.0
.flash.text 1219576 1219578 2 0.0
nrfconnect all-clusters-app nrf7002dk_nrf5340_cpuapp (read/write) 1341478 1341494 16 0.0
text 747792 747796 4 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read/write) 1108075 1108091 16 0.0
text 772928 772932 4 0.0
light-switch-app nrf7002dk_nrf5340_cpuapp text 699128 699132 4 0.0
lighting-app nrf7002dk_nrf5340_cpuapp text 699128 699132 4 0.0
psoc6 light cy8ckit_062s2_43012 .debug_info 22280233 22280234 1 0.0
telink light-switch-app tlsr9518adk80d text 636564 636568 4 0.0
lighting-app tlsr9518adk80d (read/write) 1007432 1007440 8 0.0
text 702344 702348 4 0.0
ota-requestor-app tlsr9518adk80d text 647822 647824 2 0.0
Decreases (4 builds for bl702, cc13x2_26x2, nrfconnect, telink)
platform target config section 48284ae 8778d26 change % change
bl702 lighting-app bl702 .debug_info 39725271 39725270 -1 -0.0
.text 957006 957004 -2 -0.0
cc13x2_26x2 lock-mtd LP_CC2652R7 (read/write) 183460 183452 -8 -0.0
nrfconnect lighting-app nrf5340dk_nrf5340_cpuapp text 728174 728170 -4 -0.0
telink all-clusters-minimal-app tlsr9518adk80d text 689966 689964 -2 -0.0
Full report (70 builds for bl602, bl702, cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
platform target config section 48284ae 8778d26 change % change
bl602 lighting-app bl602 (read/write) 1344618 1344626 8 0.0
.bss 86510 86510 0 0.0
.data 9584 9584 0 0.0
.text 1022160 1022162 2 0.0
bl602+rpc (read/write) 1390074 1390074 0 0.0
.bss 94550 94550 0 0.0
.data 9976 9976 0 0.0
.text 1053114 1053114 0 0.0
bl702 lighting-app bl702 (read only) 3262 3262 0 0.0
(read/write) 1195951 1195951 0 0.0
.bleromro 6296 6296 0 0.0
.bleromrw 124 124 0 0.0
.boot2 688 688 0 0.0
.bss 66590 66590 0 0.0
.bss_psram 30048 30048 0 0.0
.comment 48 48 0 0.0
.data 4048 4048 0 0.0
.debug_abbrev 1534627 1534627 0 0.0
.debug_aranges 132552 132552 0 0.0
.debug_frame 486644 486644 0 0.0
.debug_info 39725271 39725270 -1 -0.0
.debug_line 5219470 5219470 0 0.0
.debug_loc 3392838 3392838 0 0.0
.debug_ranges 371904 371904 0 0.0
.debug_str 3503942 3503942 0 0.0
.hbn 509 509 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 144 144 0 0.0
.psram 0 0 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 116400 116400 0 0.0
.rsvd 3188 3188 0 0.0
.shstrtab 293 293 0 0.0
.stack 2048 2048 0 0.0
.strtab 569359 569359 0 0.0
.symtab 172000 172000 0 0.0
.tcm_data 36 36 0 0.0
.tcmcode 3262 3262 0 0.0
.text 0 0 0 0.0
957006 957004 -2 -0.0
bl702+rpc (read only) 3262 3262 0 0.0
(read/write) 1288003 1288003 0 0.0
.bleromro 6296 6296 0 0.0
.bleromrw 124 124 0 0.0
.boot2 688 688 0 0.0
.bss 74622 74622 0 0.0
.bss_psram 30304 30304 0 0.0
.comment 48 48 0 0.0
.data 4600 4600 0 0.0
.debug_abbrev 1682752 1682752 0 0.0
.debug_aranges 140680 140680 0 0.0
.debug_frame 514176 514176 0 0.0
.debug_info 44092236 44092236 0 0.0
.debug_line 5616003 5616003 0 0.0
.debug_loc 3588130 3588130 0 0.0
.debug_ranges 395512 395512 0 0.0
.debug_str 3906477 3906477 0 0.0
.hbn 509 509 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 160 160 0 0.0
.psram 0 0 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 130848 130848 0 0.0
.rsvd 3188 3188 0 0.0
.shstrtab 293 293 0 0.0
.stack 2048 2048 0 0.0
.strtab 629948 629948 0 0.0
.symtab 190336 190336 0 0.0
.tcm_data 36 36 0 0.0
.tcmcode 3262 3262 0 0.0
.text 0 0 0 0.0
1033804 1033804 0 0.0
cc13x2_26x2 all-clusters-app LP_CC2652R7 (read only) 678283 678283 0 0.0
(read/write) 173164 173164 0 0.0
.bss 81140 81140 0 0.0
.data 3380 3380 0 0.0
.rodata 89995 89995 0 0.0
.text 587976 587976 0 0.0
all-clusters-minimal-app LP_CC2652R7 (read only) 642643 642643 0 0.0
(read/write) 157916 157916 0 0.0
.bss 80420 80420 0 0.0
.data 3380 3380 0 0.0
.rodata 79139 79139 0 0.0
.text 563184 563184 0 0.0
lock-ftd LP_CC2652R7 (read only) 675711 675711 0 0.0
(read/write) 173296 173296 0 0.0
.bss 78788 78788 0 0.0
.data 3304 3304 0 0.0
.rodata 77415 77415 0 0.0
.text 597816 597816 0 0.0
lock-mtd LP_CC2652R7 (read only) 660811 660819 8 0.0
(read/write) 183460 183452 -8 -0.0
.bss 74052 74052 0 0.0
.data 3304 3304 0 0.0
.rodata 103507 103507 0 0.0
.text 556824 556832 8 0.0
pump-app LP_CC2652R7 (read only) 689015 689015 0 0.0
(read/write) 160728 160728 0 0.0
.bss 78756 78756 0 0.0
.data 3268 3268 0 0.0
.rodata 91103 91103 0 0.0
.text 597428 597428 0 0.0
pump-controller-app LP_CC2652R7 (read only) 672811 672811 0 0.0
(read/write) 177036 177036 0 0.0
.bss 78860 78860 0 0.0
.data 3292 3292 0 0.0
.rodata 86587 86587 0 0.0
.text 585744 585744 0 0.0
shell LP_CC2652R7 (read only) 669530 669530 0 0.0
(read/write) 184244 184244 0 0.0
.bss 83468 83468 0 0.0
.data 3376 3376 0 0.0
.rodata 86738 86738 0 0.0
.text 582476 582476 0 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 586850 586850 0 0.0
.app_xip_area 463196 463196 0 0.0
.bss 66112 66112 0 0.0
.data 728 728 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
lock cyw930739m2evb_01 (read/write) 590550 590550 0 0.0
.app_xip_area 461600 461600 0 0.0
.bss 71400 71400 0 0.0
.data 736 736 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
ota-requestor-no-progress-logging cyw930739m2evb_01 (read/write) 550710 550710 0 0.0
.app_xip_area 432544 432544 0 0.0
.bss 60664 60664 0 0.0
.data 684 684 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
efr32 lighting-app BRD4161A+rpc (read/write) 975108 975124 16 0.0
.bss 152172 152172 0 0.0
.data 2168 2168 0 0.0
.text 820748 820764 16 0.0
BRD4161A+rs911x (read/write) 1038320 1038320 0 0.0
.bss 186648 186648 0 0.0
.data 2012 2012 0 0.0
.text 849640 849640 0 0.0
BRD4187C (read/write) 1149004 1149004 0 0.0
.bss 138568 138568 0 0.0
.data 2516 2516 0 0.0
.text 983324 983324 0 0.0
lock-app BRD4161A+wf200 (read/write) 1067840 1067840 0 0.0
.bss 158184 158184 0 0.0
.data 2020 2020 0 0.0
.text 907612 907612 0 0.0
window-app BRD4187C (read/write) 1141808 1141808 0 0.0
.bss 139984 139984 0 0.0
.data 2540 2540 0 0.0
.text 974688 974688 0 0.0
esp32 all-clusters-app c3devkit (read only) 1219576 1219578 2 0.0
(read/write) 1791034 1791034 0 0.0
.dram0.bss 76912 76912 0 0.0
.dram0.data 13928 13928 0 0.0
.flash.rodata 248472 248472 0 0.0
.flash.text 1219576 1219578 2 0.0
.iram0.text 71188 71188 0 0.0
m5stack (read only) 1233447 1233447 0 0.0
(read/write) 564267 564267 0 0.0
.dram0.bss 82064 82064 0 0.0
.dram0.data 34224 34224 0 0.0
.flash.rodata 314260 314260 0 0.0
.flash.text 1228063 1228063 0 0.0
.iram0.text 124803 124803 0 0.0
k32w contact k32w0+release (read/write) 661356 661356 0 0.0
.bss 77032 77032 0 0.0
.data 2104 2104 0 0.0
.text 563108 563108 0 0.0
light k32w0+release (read/write) 672216 672216 0 0.0
.bss 74824 74824 0 0.0
.data 2060 2060 0 0.0
.text 592604 592604 0 0.0
lock k32w0+release (read/write) 632884 632884 0 0.0
.bss 75584 75584 0 0.0
.data 2080 2080 0 0.0
.text 552492 552492 0 0.0
linux all-clusters-app debug (read only) 3113689 3113689 0 0.0
(read/write) 158568 158568 0 0.0
.bss 62432 62432 0 0.0
.data 2304 2304 0 0.0
.data.rel.ro 87240 87240 0 0.0
.dynamic 608 608 0 0.0
.got 4768 4768 0 0.0
.init 27 27 0 0.0
.init_array 1184 1184 0 0.0
.rodata 281835 281835 0 0.0
.text 2647170 2647170 0 0.0
all-clusters-minimal-app debug (read only) 2937113 2937113 0 0.0
(read/write) 149968 149968 0 0.0
.bss 61632 61632 0 0.0
.data 2272 2272 0 0.0
.data.rel.ro 79608 79608 0 0.0
.dynamic 608 608 0 0.0
.got 4680 4680 0 0.0
.init 27 27 0 0.0
.init_array 1160 1160 0 0.0
.rodata 281195 281195 0 0.0
.text 2474274 2474274 0 0.0
bridge-app debug (read only) 2496537 2496537 0 0.0
(read/write) 133088 133088 0 0.0
.bss 52512 52512 0 0.0
.data 3792 3792 0 0.0
.data.rel.ro 70696 70696 0 0.0
.dynamic 608 608 0 0.0
.got 4600 4600 0 0.0
.init 27 27 0 0.0
.init_array 856 856 0 0.0
.rodata 212480 212480 0 0.0
.text 2112274 2112274 0 0.0
chip-tool debug (read only) 11171537 11171537 0 0.0
(read/write) 646880 646880 0 0.0
.bss 25880 25880 0 0.0
.data 2754 2754 0 0.0
.data.rel.ro 611648 611648 0 0.0
.dynamic 608 608 0 0.0
.got 5192 5192 0 0.0
.init 27 27 0 0.0
.init_array 736 736 0 0.0
.rodata 606693 606693 0 0.0
.text 9065668 9065668 0 0.0
chip-tool-ipv6only arm64 (read only) 10583356 10583356 0 0.0
(read/write) 696104 696104 0 0.0
.bss 33912 33912 0 0.0
.data 2768 2768 0 0.0
.data.rel.ro 640528 640528 0 0.0
.dynamic 560 560 0 0.0
.got 13840 13840 0 0.0
.init 24 24 0 0.0
.init_array 200 200 0 0.0
.rodata 536156 536156 0 0.0
.text 8398740 8398740 0 0.0
lighting-app debug+rpc (read only) 2663713 2663713 0 0.0
(read/write) 132456 132456 0 0.0
.bss 49952 49952 0 0.0
.data 2288 2288 0 0.0
.data.rel.ro 74024 74024 0 0.0
.dynamic 608 608 0 0.0
.got 4632 4632 0 0.0
.init 27 27 0 0.0
.init_array 928 928 0 0.0
.rodata 228448 228448 0 0.0
.text 2258514 2258514 0 0.0
lock-app debug (read only) 2622905 2622905 0 0.0
(read/write) 127440 127440 0 0.0
.bss 48384 48384 0 0.0
.data 1904 1904 0 0.0
.data.rel.ro 70936 70936 0 0.0
.dynamic 608 608 0 0.0
.got 4664 4664 0 0.0
.init 27 27 0 0.0
.init_array 904 904 0 0.0
.rodata 244680 244680 0 0.0
.text 2206322 2206322 0 0.0
ota-provider-app debug (read only) 2196793 2196793 0 0.0
(read/write) 105872 105872 0 0.0
.bss 46560 46560 0 0.0
.data 2080 2080 0 0.0
.data.rel.ro 52120 52120 0 0.0
.dynamic 608 608 0 0.0
.got 3728 3728 0 0.0
.init 27 27 0 0.0
.init_array 744 744 0 0.0
.rodata 196008 196008 0 0.0
.text 1860882 1860882 0 0.0
ota-requestor-app debug (read only) 2358249 2358249 0 0.0
(read/write) 113920 113920 0 0.0
.bss 49056 49056 0 0.0
.data 2448 2448 0 0.0
.data.rel.ro 57208 57208 0 0.0
.dynamic 608 608 0 0.0
.got 3728 3728 0 0.0
.init 27 27 0 0.0
.init_array 824 824 0 0.0
.rodata 202704 202704 0 0.0
.text 2006642 2006642 0 0.0
shell debug (read only) 2646337 2646337 0 0.0
(read/write) 143032 143032 0 0.0
.bss 57832 57832 0 0.0
.data 1264 1264 0 0.0
.data.rel.ro 78136 78136 0 0.0
.dynamic 608 608 0 0.0
.got 4128 4128 0 0.0
.init 27 27 0 0.0
.init_array 1032 1032 0 0.0
.rodata 240050 240050 0 0.0
.text 2246578 2246578 0 0.0
thermostat-no-ble arm64 (read only) 2478452 2478452 0 0.0
(read/write) 145016 145016 0 0.0
.bss 55336 55336 0 0.0
.data 1816 1816 0 0.0
.data.rel.ro 78640 78640 0 0.0
.dynamic 560 560 0 0.0
.got 5192 5192 0 0.0
.init 24 24 0 0.0
.init_array 432 432 0 0.0
.rodata 149712 149712 0 0.0
.text 2068144 2068144 0 0.0
tv-app debug (read only) 3285681 3285681 0 0.0
(read/write) 262280 262280 0 0.0
.bss 170776 170776 0 0.0
.data 4256 4256 0 0.0
.data.rel.ro 80544 80544 0 0.0
.dynamic 608 608 0 0.0
.got 5000 5000 0 0.0
.init 27 27 0 0.0
.init_array 1064 1064 0 0.0
.rodata 269048 269048 0 0.0
.text 2822306 2822306 0 0.0
tv-casting-app debug (read only) 5627073 5627073 0 0.0
(read/write) 162640 162640 0 0.0
.bss 52152 52152 0 0.0
.data 1936 1936 0 0.0
.data.rel.ro 101960 101960 0 0.0
.dynamic 608 608 0 0.0
.got 4920 4920 0 0.0
.init 27 27 0 0.0
.init_array 1040 1040 0 0.0
.rodata 361177 361177 0 0.0
.text 4988306 4988306 0 0.0
mbed all-clusters-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2541540 2541540 0 0.0
.bss 222648 222648 0 0.0
.data 5592 5592 0 0.0
.text 1504156 1504156 0 0.0
all-clusters-minimal-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2489992 2489992 0 0.0
.bss 221920 221920 0 0.0
.data 5568 5568 0 0.0
.text 1452588 1452588 0 0.0
lighting-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2476884 2476884 0 0.0
.bss 216628 216628 0 0.0
.data 5848 5848 0 0.0
.text 1439500 1439500 0 0.0
lock-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2462848 2462848 0 0.0
.bss 214932 214932 0 0.0
.data 5872 5872 0 0.0
.text 1425492 1425492 0 0.0
pigweed-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 1154044 1154044 0 0.0
.bss 10944 10944 0 0.0
.data 4520 4520 0 0.0
.text 117428 117428 0 0.0
shell CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2424764 2424764 0 0.0
.bss 214944 214944 0 0.0
.data 5752 5752 0 0.0
.text 1387380 1387380 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read/write) 1161587 1161587 0 0.0
bss 143621 143621 0 0.0
rodata 136176 136176 0 0.0
text 801934 801934 0 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1341478 1341494 16 0.0
bss 105132 105132 0 0.0
rodata 204040 204040 0 0.0
text 747792 747796 4 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read/write) 1108075 1108091 16 0.0
bss 142856 142856 0 0.0
rodata 112504 112504 0 0.0
text 772928 772932 4 0.0
light-switch-app nrf52840dk_nrf52840 (read/write) 1072891 1072891 0 0.0
bss 135238 135238 0 0.0
rodata 112104 112104 0 0.0
text 745822 745822 0 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1251302 1251302 0 0.0
bss 98784 98784 0 0.0
rodata 168952 168952 0 0.0
text 699128 699132 4 0.0
lighting-app nrf52840dk_nrf52840+rpc (read/write) 1116767 1116767 0 0.0
bss 145803 145803 0 0.0
rodata 107132 107132 0 0.0
text 782752 782752 0 0.0
nrf52840dongle_nrf52840 (read/write) 1061223 1061223 0 0.0
bss 153988 153988 0 0.0
rodata 85756 85756 0 0.0
text 738350 738350 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 1063982 1063982 0 0.0
bss 143014 143014 0 0.0
rodata 109712 109712 0 0.0
text 728174 728170 -4 -0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1251302 1251302 0 0.0
bss 98784 98784 0 0.0
rodata 168952 168952 0 0.0
text 699128 699132 4 0.0
lock-app nrf52840dk_nrf52840 (read/write) 1108535 1108535 0 0.0
bss 136286 136286 0 0.0
rodata 134980 134980 0 0.0
text 757672 757672 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 1020138 1020138 0 0.0
bss 133743 133743 0 0.0
rodata 127900 127900 0 0.0
text 675398 675398 0 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1287398 1287398 0 0.0
bss 99866 99866 0 0.0
rodata 191884 191884 0 0.0
text 711254 711254 0 0.0
pigweed-app nrf52840dk_nrf52840 (read/write) 572023 572023 0 0.0
bss 74821 74821 0 0.0
rodata 44564 44564 0 0.0
text 392480 392480 0 0.0
pump-app nrf52840dk_nrf52840 (read/write) 1063995 1063995 0 0.0
bss 135067 135067 0 0.0
rodata 110520 110520 0 0.0
text 738696 738696 0 0.0
pump-controller-app nrf52840dk_nrf52840 (read/write) 1050379 1050379 0 0.0
bss 134834 134834 0 0.0
rodata 107000 107000 0 0.0
text 728858 728858 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read only) 842056 842056 0 0.0
(read/write) 1749268 1749268 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 188624 188624 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2664 2664 0 0.0
.debug_abbrev 1243463 1243463 0 0.0
.debug_aranges 110840 110840 0 0.0
.debug_frame 372300 372300 0 0.0
.debug_info 27081527 27081527 0 0.0
.debug_line 3735193 3735193 0 0.0
.debug_loc 3637438 3637438 0 0.0
.debug_ranges 355584 355584 0 0.0
.debug_str 3459528 3459528 0 0.0
.heap 842056 842056 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 572583 572583 0 0.0
.symtab 422416 422416 0 0.0
.text 0 0 0 0.0
1549592 1549592 0 0.0
.zero.table 8 8 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read only) 842784 842784 0 0.0
(read/write) 1691908 1691908 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 187896 187896 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2664 2664 0 0.0
.debug_abbrev 1235244 1235244 0 0.0
.debug_aranges 110312 110312 0 0.0
.debug_frame 375356 375356 0 0.0
.debug_info 26817892 26817892 0 0.0
.debug_line 3754091 3754091 0 0.0
.debug_loc 3625044 3625044 0 0.0
.debug_ranges 354200 354200 0 0.0
.debug_str 3448540 3448540 0 0.0
.heap 842784 842784 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 536672 536672 0 0.0
.symtab 408688 408688 0 0.0
.text 1492960 1492960 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
light cy8ckit_062s2_43012 (read only) 850976 850976 0 0.0
(read/write) 1609916 1609916 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 179912 179912 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2456 2456 0 0.0
.debug_abbrev 1068633 1068633 0 0.0
.debug_aranges 102512 102512 0 0.0
.debug_frame 345688 345688 0 0.0
.debug_info 22280233 22280234 1 0.0
.debug_line 3320126 3320126 0 0.0
.debug_loc 3325256 3325256 0 0.0
.debug_ranges 318336 318336 0 0.0
.debug_str 3254126 3254126 0 0.0
.heap 850976 850976 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 472997 472997 0 0.0
.symtab 377184 377184 0 0.0
.text 1419160 1419160 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
lock cy8ckit_062s2_43012 (read only) 845984 845984 0 0.0
(read/write) 1643932 1643932 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 184888 184888 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2472 2472 0 0.0
.debug_abbrev 1070433 1070433 0 0.0
.debug_aranges 102896 102896 0 0.0
.debug_frame 347488 347488 0 0.0
.debug_info 22498926 22498926 0 0.0
.debug_line 3321289 3321289 0 0.0
.debug_loc 3346799 3346799 0 0.0
.debug_ranges 320192 320192 0 0.0
.debug_str 3269964 3269964 0 0.0
.heap 845984 845984 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 475714 475714 0 0.0
.symtab 379008 379008 0 0.0
.text 1448184 1448184 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
qpg lighting-app qpg6105+debug (read/write) 1149556 1149556 0 0.0
.bss 100348 100348 0 0.0
.data 840 840 0 0.0
.text 596656 596656 0 0.0
lock-app qpg6105+debug (read/write) 1116044 1116044 0 0.0
.bss 95828 95828 0 0.0
.data 836 836 0 0.0
.text 563140 563140 0 0.0
telink all-clusters-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1068740 1068740 0 0.0
bss 97632 97632 0 0.0
text 724814 724814 0 0.0
all-clusters-minimal-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1008032 1008032 0 0.0
bss 96856 96856 0 0.0
text 689966 689964 -2 -0.0
light-switch-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 929472 929472 0 0.0
bss 89104 89104 0 0.0
text 636564 636568 4 0.0
lighting-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1007432 1007440 8 0.0
bss 97156 97156 0 0.0
text 702344 702348 4 0.0
ota-requestor-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 943068 943068 0 0.0
bss 90052 90052 0 0.0
text 647822 647824 2 0.0
thermostat tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 932644 932644 0 0.0
bss 90496 90496 0 0.0
text 637274 637274 0 0.0

@github-actions
Copy link

github-actions bot commented Jan 6, 2023

PR #24185: Size comparison from 457f809 to c9c1cce

Increases (4 builds for efr32, nrfconnect, telink)
platform target config section 457f809 c9c1cce change % change
efr32 lighting-app BRD4161A+rpc (read/write) 975108 975124 16 0.0
.text 820748 820764 16 0.0
nrfconnect all-clusters-minimal-app nrf52840dk_nrf52840 (read/write) 1108075 1108091 16 0.0
text 772928 772932 4 0.0
telink ota-requestor-app tlsr9518adk80d text 648632 648634 2 0.0
thermostat tlsr9518adk80d (read/write) 934184 934192 8 0.0
text 638080 638084 4 0.0
Decreases (13 builds for bl702, esp32, nrfconnect, psoc6, telink)
platform target config section 457f809 c9c1cce change % change
bl702 lighting-app bl702+rpc .debug_info 44092237 44092236 -1 -0.0
.text 1033806 1033804 -2 -0.0
esp32 all-clusters-app c3devkit (read only) 1219576 1219574 -2 -0.0
.flash.text 1219576 1219574 -2 -0.0
nrfconnect light-switch-app nrf52840dk_nrf52840 text 745822 745818 -4 -0.0
lighting-app nrf52840dongle_nrf52840 text 738354 738350 -4 -0.0
nrf5340dk_nrf5340_cpuapp text 728174 728170 -4 -0.0
psoc6 all-clusters cy8ckit_062s2_43012 .debug_info 27081527 27081526 -1 -0.0
all-clusters-minimal cy8ckit_062s2_43012 .debug_info 26817892 26817891 -1 -0.0
lock cy8ckit_062s2_43012 .debug_info 22498926 22498925 -1 -0.0
telink all-clusters-app tlsr9518adk80d text 725624 725622 -2 -0.0
all-clusters-minimal-app tlsr9518adk80d (read/write) 1009624 1009616 -8 -0.0
text 690770 690766 -4 -0.0
contact-sensor-app tlsr9518adk80d text 622844 622842 -2 -0.0
light-switch-app tlsr9518adk80d text 637384 637382 -2 -0.0
lighting-app tlsr9518adk80d text 703160 703158 -2 -0.0
Full report (71 builds for bl602, bl702, cc13x2_26x2, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
platform target config section 457f809 c9c1cce change % change
bl602 lighting-app bl602 (read/write) 1330486 1330486 0 0.0
.bss 86926 86926 0 0.0
.data 9576 9576 0 0.0
.text 1016646 1016646 0 0.0
bl602+rpc (read/write) 1375694 1375694 0 0.0
.bss 94966 94966 0 0.0
.data 9976 9976 0 0.0
.text 1047342 1047342 0 0.0
bl702 lighting-app bl702 (read only) 3262 3262 0 0.0
(read/write) 1195951 1195951 0 0.0
.bleromro 6296 6296 0 0.0
.bleromrw 124 124 0 0.0
.boot2 688 688 0 0.0
.bss 66590 66590 0 0.0
.bss_psram 30048 30048 0 0.0
.comment 48 48 0 0.0
.data 4048 4048 0 0.0
.debug_abbrev 1534627 1534627 0 0.0
.debug_aranges 132552 132552 0 0.0
.debug_frame 486644 486644 0 0.0
.debug_info 39725271 39725271 0 0.0
.debug_line 5219470 5219470 0 0.0
.debug_loc 3392838 3392838 0 0.0
.debug_ranges 371904 371904 0 0.0
.debug_str 3503895 3503895 0 0.0
.hbn 509 509 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 144 144 0 0.0
.psram 0 0 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 116400 116400 0 0.0
.rsvd 3188 3188 0 0.0
.shstrtab 293 293 0 0.0
.stack 2048 2048 0 0.0
.strtab 569365 569365 0 0.0
.symtab 172000 172000 0 0.0
.tcm_data 36 36 0 0.0
.tcmcode 3262 3262 0 0.0
.text 0 0 0 0.0
957006 957006 0 0.0
bl702+rpc (read only) 3262 3262 0 0.0
(read/write) 1288003 1288003 0 0.0
.bleromro 6296 6296 0 0.0
.bleromrw 124 124 0 0.0
.boot2 688 688 0 0.0
.bss 74622 74622 0 0.0
.bss_psram 30304 30304 0 0.0
.comment 48 48 0 0.0
.data 4600 4600 0 0.0
.debug_abbrev 1682752 1682752 0 0.0
.debug_aranges 140680 140680 0 0.0
.debug_frame 514176 514176 0 0.0
.debug_info 44092237 44092236 -1 -0.0
.debug_line 5616003 5616003 0 0.0
.debug_loc 3588130 3588130 0 0.0
.debug_ranges 395512 395512 0 0.0
.debug_str 3906430 3906430 0 0.0
.hbn 509 509 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 160 160 0 0.0
.psram 0 0 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 130848 130848 0 0.0
.rsvd 3188 3188 0 0.0
.shstrtab 293 293 0 0.0
.stack 2048 2048 0 0.0
.strtab 629954 629954 0 0.0
.symtab 190336 190336 0 0.0
.tcm_data 36 36 0 0.0
.tcmcode 3262 3262 0 0.0
.text 0 0 0 0.0
1033806 1033804 -2 -0.0
cc13x2_26x2 all-clusters-app LP_CC2652R7 (read only) 678283 678283 0 0.0
(read/write) 173164 173164 0 0.0
.bss 81140 81140 0 0.0
.data 3380 3380 0 0.0
.rodata 89995 89995 0 0.0
.text 587976 587976 0 0.0
all-clusters-minimal-app LP_CC2652R7 (read only) 642643 642643 0 0.0
(read/write) 157916 157916 0 0.0
.bss 80420 80420 0 0.0
.data 3380 3380 0 0.0
.rodata 79139 79139 0 0.0
.text 563184 563184 0 0.0
lock-ftd LP_CC2652R7 (read only) 675711 675711 0 0.0
(read/write) 173296 173296 0 0.0
.bss 78788 78788 0 0.0
.data 3304 3304 0 0.0
.rodata 77415 77415 0 0.0
.text 597816 597816 0 0.0
lock-mtd LP_CC2652R7 (read only) 660819 660819 0 0.0
(read/write) 183452 183452 0 0.0
.bss 74052 74052 0 0.0
.data 3304 3304 0 0.0
.rodata 103507 103507 0 0.0
.text 556832 556832 0 0.0
pump-app LP_CC2652R7 (read only) 689015 689015 0 0.0
(read/write) 160728 160728 0 0.0
.bss 78756 78756 0 0.0
.data 3268 3268 0 0.0
.rodata 91103 91103 0 0.0
.text 597428 597428 0 0.0
pump-controller-app LP_CC2652R7 (read only) 672811 672811 0 0.0
(read/write) 177036 177036 0 0.0
.bss 78860 78860 0 0.0
.data 3292 3292 0 0.0
.rodata 86587 86587 0 0.0
.text 585744 585744 0 0.0
shell LP_CC2652R7 (read only) 669530 669530 0 0.0
(read/write) 184244 184244 0 0.0
.bss 83468 83468 0 0.0
.data 3376 3376 0 0.0
.rodata 86738 86738 0 0.0
.text 582476 582476 0 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 586850 586850 0 0.0
.app_xip_area 463196 463196 0 0.0
.bss 66112 66112 0 0.0
.data 728 728 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
lock cyw930739m2evb_01 (read/write) 590550 590550 0 0.0
.app_xip_area 461600 461600 0 0.0
.bss 71400 71400 0 0.0
.data 736 736 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
ota-requestor-no-progress-logging cyw930739m2evb_01 (read/write) 550710 550710 0 0.0
.app_xip_area 432544 432544 0 0.0
.bss 60664 60664 0 0.0
.data 684 684 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
efr32 lighting-app BRD4161A+rpc (read/write) 975108 975124 16 0.0
.bss 152172 152172 0 0.0
.data 2168 2168 0 0.0
.text 820748 820764 16 0.0
BRD4161A+rs911x (read/write) 1038320 1038320 0 0.0
.bss 186648 186648 0 0.0
.data 2012 2012 0 0.0
.text 849640 849640 0 0.0
BRD4187C (read/write) 1149004 1149004 0 0.0
.bss 138568 138568 0 0.0
.data 2516 2516 0 0.0
.text 983324 983324 0 0.0
lock-app BRD4161A+wf200 (read/write) 1067840 1067840 0 0.0
.bss 158184 158184 0 0.0
.data 2020 2020 0 0.0
.text 907612 907612 0 0.0
window-app BRD4187C (read/write) 1141808 1141808 0 0.0
.bss 139984 139984 0 0.0
.data 2540 2540 0 0.0
.text 974688 974688 0 0.0
esp32 all-clusters-app c3devkit (read only) 1219576 1219574 -2 -0.0
(read/write) 1791034 1791034 0 0.0
.dram0.bss 76912 76912 0 0.0
.dram0.data 13928 13928 0 0.0
.flash.rodata 248472 248472 0 0.0
.flash.text 1219576 1219574 -2 -0.0
.iram0.text 71188 71188 0 0.0
m5stack (read only) 1233447 1233447 0 0.0
(read/write) 564267 564267 0 0.0
.dram0.bss 82064 82064 0 0.0
.dram0.data 34224 34224 0 0.0
.flash.rodata 314260 314260 0 0.0
.flash.text 1228063 1228063 0 0.0
.iram0.text 124803 124803 0 0.0
k32w contact k32w0+release (read/write) 661356 661356 0 0.0
.bss 77032 77032 0 0.0
.data 2104 2104 0 0.0
.text 563108 563108 0 0.0
light k32w0+release (read/write) 672216 672216 0 0.0
.bss 74824 74824 0 0.0
.data 2060 2060 0 0.0
.text 592604 592604 0 0.0
lock k32w0+release (read/write) 632884 632884 0 0.0
.bss 75584 75584 0 0.0
.data 2080 2080 0 0.0
.text 552492 552492 0 0.0
linux all-clusters-app debug (read only) 3113689 3113689 0 0.0
(read/write) 158568 158568 0 0.0
.bss 62432 62432 0 0.0
.data 2304 2304 0 0.0
.data.rel.ro 87240 87240 0 0.0
.dynamic 608 608 0 0.0
.got 4768 4768 0 0.0
.init 27 27 0 0.0
.init_array 1184 1184 0 0.0
.rodata 281835 281835 0 0.0
.text 2647170 2647170 0 0.0
all-clusters-minimal-app debug (read only) 2937113 2937113 0 0.0
(read/write) 149968 149968 0 0.0
.bss 61632 61632 0 0.0
.data 2272 2272 0 0.0
.data.rel.ro 79608 79608 0 0.0
.dynamic 608 608 0 0.0
.got 4680 4680 0 0.0
.init 27 27 0 0.0
.init_array 1160 1160 0 0.0
.rodata 281195 281195 0 0.0
.text 2474274 2474274 0 0.0
bridge-app debug (read only) 2496537 2496537 0 0.0
(read/write) 133088 133088 0 0.0
.bss 52512 52512 0 0.0
.data 3792 3792 0 0.0
.data.rel.ro 70696 70696 0 0.0
.dynamic 608 608 0 0.0
.got 4600 4600 0 0.0
.init 27 27 0 0.0
.init_array 856 856 0 0.0
.rodata 212480 212480 0 0.0
.text 2112274 2112274 0 0.0
chip-tool debug (read only) 11242785 11242785 0 0.0
(read/write) 640960 640960 0 0.0
.bss 25880 25880 0 0.0
.data 2754 2754 0 0.0
.data.rel.ro 605744 605744 0 0.0
.dynamic 608 608 0 0.0
.got 5192 5192 0 0.0
.init 27 27 0 0.0
.init_array 736 736 0 0.0
.rodata 620197 620197 0 0.0
.text 9137380 9137380 0 0.0
chip-tool-ipv6only arm64 (read only) 10649420 10649420 0 0.0
(read/write) 690152 690152 0 0.0
.bss 33912 33912 0 0.0
.data 2768 2768 0 0.0
.data.rel.ro 634624 634624 0 0.0
.dynamic 560 560 0 0.0
.got 13792 13792 0 0.0
.init 24 24 0 0.0
.init_array 200 200 0 0.0
.rodata 549324 549324 0 0.0
.text 8465748 8465748 0 0.0
lighting-app debug+rpc (read only) 2663713 2663713 0 0.0
(read/write) 132456 132456 0 0.0
.bss 49952 49952 0 0.0
.data 2288 2288 0 0.0
.data.rel.ro 74024 74024 0 0.0
.dynamic 608 608 0 0.0
.got 4632 4632 0 0.0
.init 27 27 0 0.0
.init_array 928 928 0 0.0
.rodata 228448 228448 0 0.0
.text 2258514 2258514 0 0.0
lock-app debug (read only) 2622905 2622905 0 0.0
(read/write) 127440 127440 0 0.0
.bss 48384 48384 0 0.0
.data 1904 1904 0 0.0
.data.rel.ro 70936 70936 0 0.0
.dynamic 608 608 0 0.0
.got 4664 4664 0 0.0
.init 27 27 0 0.0
.init_array 904 904 0 0.0
.rodata 244680 244680 0 0.0
.text 2206322 2206322 0 0.0
ota-provider-app debug (read only) 2196793 2196793 0 0.0
(read/write) 105872 105872 0 0.0
.bss 46560 46560 0 0.0
.data 2080 2080 0 0.0
.data.rel.ro 52120 52120 0 0.0
.dynamic 608 608 0 0.0
.got 3728 3728 0 0.0
.init 27 27 0 0.0
.init_array 744 744 0 0.0
.rodata 196008 196008 0 0.0
.text 1860882 1860882 0 0.0
ota-requestor-app debug (read only) 2358249 2358249 0 0.0
(read/write) 113920 113920 0 0.0
.bss 49056 49056 0 0.0
.data 2448 2448 0 0.0
.data.rel.ro 57208 57208 0 0.0
.dynamic 608 608 0 0.0
.got 3728 3728 0 0.0
.init 27 27 0 0.0
.init_array 824 824 0 0.0
.rodata 202704 202704 0 0.0
.text 2006642 2006642 0 0.0
shell debug (read only) 2646337 2646337 0 0.0
(read/write) 143032 143032 0 0.0
.bss 57832 57832 0 0.0
.data 1264 1264 0 0.0
.data.rel.ro 78136 78136 0 0.0
.dynamic 608 608 0 0.0
.got 4128 4128 0 0.0
.init 27 27 0 0.0
.init_array 1032 1032 0 0.0
.rodata 240050 240050 0 0.0
.text 2246578 2246578 0 0.0
thermostat-no-ble arm64 (read only) 2478452 2478452 0 0.0
(read/write) 145016 145016 0 0.0
.bss 55336 55336 0 0.0
.data 1816 1816 0 0.0
.data.rel.ro 78640 78640 0 0.0
.dynamic 560 560 0 0.0
.got 5192 5192 0 0.0
.init 24 24 0 0.0
.init_array 432 432 0 0.0
.rodata 149712 149712 0 0.0
.text 2068144 2068144 0 0.0
tv-app debug (read only) 3285681 3285681 0 0.0
(read/write) 262280 262280 0 0.0
.bss 170776 170776 0 0.0
.data 4256 4256 0 0.0
.data.rel.ro 80544 80544 0 0.0
.dynamic 608 608 0 0.0
.got 5000 5000 0 0.0
.init 27 27 0 0.0
.init_array 1064 1064 0 0.0
.rodata 269048 269048 0 0.0
.text 2822306 2822306 0 0.0
tv-casting-app debug (read only) 5627073 5627073 0 0.0
(read/write) 162640 162640 0 0.0
.bss 52152 52152 0 0.0
.data 1936 1936 0 0.0
.data.rel.ro 101960 101960 0 0.0
.dynamic 608 608 0 0.0
.got 4920 4920 0 0.0
.init 27 27 0 0.0
.init_array 1040 1040 0 0.0
.rodata 361177 361177 0 0.0
.text 4988306 4988306 0 0.0
mbed all-clusters-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2541540 2541540 0 0.0
.bss 222648 222648 0 0.0
.data 5592 5592 0 0.0
.text 1504156 1504156 0 0.0
all-clusters-minimal-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2489992 2489992 0 0.0
.bss 221920 221920 0 0.0
.data 5568 5568 0 0.0
.text 1452588 1452588 0 0.0
lighting-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2476884 2476884 0 0.0
.bss 216628 216628 0 0.0
.data 5848 5848 0 0.0
.text 1439500 1439500 0 0.0
lock-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2462848 2462848 0 0.0
.bss 214932 214932 0 0.0
.data 5872 5872 0 0.0
.text 1425492 1425492 0 0.0
pigweed-app CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 1154044 1154044 0 0.0
.bss 10944 10944 0 0.0
.data 4520 4520 0 0.0
.text 117428 117428 0 0.0
shell CY8CPROTO_062_4343W+release (read only) 6224 6224 0 0.0
(read/write) 2424764 2424764 0 0.0
.bss 214944 214944 0 0.0
.data 5752 5752 0 0.0
.text 1387380 1387380 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read/write) 1161587 1161587 0 0.0
bss 143621 143621 0 0.0
rodata 136176 136176 0 0.0
text 801934 801934 0 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1341494 1341494 0 0.0
bss 105132 105132 0 0.0
rodata 204040 204040 0 0.0
text 747796 747796 0 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read/write) 1108075 1108091 16 0.0
bss 142856 142856 0 0.0
rodata 112504 112504 0 0.0
text 772928 772932 4 0.0
light-switch-app nrf52840dk_nrf52840 (read/write) 1072891 1072891 0 0.0
bss 135238 135238 0 0.0
rodata 112104 112104 0 0.0
text 745822 745818 -4 -0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1251302 1251302 0 0.0
bss 98784 98784 0 0.0
rodata 168952 168952 0 0.0
text 699132 699132 0 0.0
lighting-app nrf52840dk_nrf52840+rpc (read/write) 1116767 1116767 0 0.0
bss 145803 145803 0 0.0
rodata 107132 107132 0 0.0
text 782752 782752 0 0.0
nrf52840dongle_nrf52840 (read/write) 1061223 1061223 0 0.0
bss 153988 153988 0 0.0
rodata 85756 85756 0 0.0
text 738354 738350 -4 -0.0
nrf5340dk_nrf5340_cpuapp (read/write) 1063982 1063982 0 0.0
bss 143014 143014 0 0.0
rodata 109712 109712 0 0.0
text 728174 728170 -4 -0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1251302 1251302 0 0.0
bss 98784 98784 0 0.0
rodata 168952 168952 0 0.0
text 699132 699132 0 0.0
lock-app nrf52840dk_nrf52840 (read/write) 1108535 1108535 0 0.0
bss 136286 136286 0 0.0
rodata 134980 134980 0 0.0
text 757676 757676 0 0.0
nrf5340dk_nrf5340_cpuapp (read/write) 1020138 1020138 0 0.0
bss 133743 133743 0 0.0
rodata 127900 127900 0 0.0
text 675398 675398 0 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1287398 1287398 0 0.0
bss 99866 99866 0 0.0
rodata 191884 191884 0 0.0
text 711254 711254 0 0.0
pigweed-app nrf52840dk_nrf52840 (read/write) 572023 572023 0 0.0
bss 74821 74821 0 0.0
rodata 44564 44564 0 0.0
text 392480 392480 0 0.0
pump-app nrf52840dk_nrf52840 (read/write) 1063995 1063995 0 0.0
bss 135067 135067 0 0.0
rodata 110520 110520 0 0.0
text 738696 738696 0 0.0
pump-controller-app nrf52840dk_nrf52840 (read/write) 1050379 1050379 0 0.0
bss 134834 134834 0 0.0
rodata 107000 107000 0 0.0
text 728858 728858 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read only) 842056 842056 0 0.0
(read/write) 1749268 1749268 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 188624 188624 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2664 2664 0 0.0
.debug_abbrev 1243463 1243463 0 0.0
.debug_aranges 110840 110840 0 0.0
.debug_frame 372300 372300 0 0.0
.debug_info 27081527 27081526 -1 -0.0
.debug_line 3735193 3735193 0 0.0
.debug_loc 3637438 3637438 0 0.0
.debug_ranges 355584 355584 0 0.0
.debug_str 3459482 3459482 0 0.0
.heap 842056 842056 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 572589 572589 0 0.0
.symtab 422416 422416 0 0.0
.text 0 0 0 0.0
1549592 1549592 0 0.0
.zero.table 8 8 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read only) 842784 842784 0 0.0
(read/write) 1691908 1691908 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 187896 187896 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2664 2664 0 0.0
.debug_abbrev 1235244 1235244 0 0.0
.debug_aranges 110312 110312 0 0.0
.debug_frame 375356 375356 0 0.0
.debug_info 26817892 26817891 -1 -0.0
.debug_line 3754091 3754091 0 0.0
.debug_loc 3625044 3625044 0 0.0
.debug_ranges 354200 354200 0 0.0
.debug_str 3448494 3448494 0 0.0
.heap 842784 842784 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 536678 536678 0 0.0
.symtab 408688 408688 0 0.0
.text 1492960 1492960 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
light cy8ckit_062s2_43012 (read only) 850976 850976 0 0.0
(read/write) 1609916 1609916 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 179912 179912 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2456 2456 0 0.0
.debug_abbrev 1068633 1068633 0 0.0
.debug_aranges 102512 102512 0 0.0
.debug_frame 345688 345688 0 0.0
.debug_info 22280234 22280234 0 0.0
.debug_line 3320126 3320126 0 0.0
.debug_loc 3325256 3325256 0 0.0
.debug_ranges 318336 318336 0 0.0
.debug_str 3254080 3254080 0 0.0
.heap 850976 850976 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 473003 473003 0 0.0
.symtab 377184 377184 0 0.0
.text 1419160 1419160 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
lock cy8ckit_062s2_43012 (read only) 845984 845984 0 0.0
(read/write) 1643932 1643932 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 184888 184888 0 0.0
.comment 200 200 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2472 2472 0 0.0
.debug_abbrev 1070433 1070433 0 0.0
.debug_aranges 102896 102896 0 0.0
.debug_frame 347488 347488 0 0.0
.debug_info 22498926 22498925 -1 -0.0
.debug_line 3321289 3321289 0 0.0
.debug_loc 3346799 3346799 0 0.0
.debug_ranges 320192 320192 0 0.0
.debug_str 3269918 3269918 0 0.0
.heap 845984 845984 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 288 288 0 0.0
.stab 156 156 0 0.0
.stabstr 335 335 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 475720 475720 0 0.0
.symtab 379008 379008 0 0.0
.text 1448184 1448184 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
qpg lighting-app qpg6105+debug (read/write) 1149556 1149556 0 0.0
.bss 100348 100348 0 0.0
.data 840 840 0 0.0
.text 596656 596656 0 0.0
lock-app qpg6105+debug (read/write) 1116044 1116044 0 0.0
.bss 95828 95828 0 0.0
.data 836 836 0 0.0
.text 563140 563140 0 0.0
telink all-clusters-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1070336 1070336 0 0.0
bss 98268 98268 0 0.0
text 725624 725622 -2 -0.0
all-clusters-minimal-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1009624 1009616 -8 -0.0
bss 97488 97488 0 0.0
text 690770 690766 -4 -0.0
contact-sensor-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 914532 914532 0 0.0
bss 89644 89644 0 0.0
text 622844 622842 -2 -0.0
light-switch-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 931032 931032 0 0.0
bss 89736 89736 0 0.0
text 637384 637382 -2 -0.0
lighting-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1009000 1009000 0 0.0
bss 97796 97796 0 0.0
text 703160 703158 -2 -0.0
ota-requestor-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 944624 944624 0 0.0
bss 90688 90688 0 0.0
text 648632 648634 2 0.0
thermostat tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 934184 934192 8 0.0
bss 91124 91124 0 0.0
text 638080 638084 4 0.0

@andy31415 andy31415 merged commit e7347ea into project-chip:master Jan 9, 2023
cletnick pushed a commit to cletnick/connectedhomeip that referenced this pull request Jan 10, 2023
* doc: add sphinx documentation framework

Added the basics for a sphinx-based doc portal.

Added an extension `external_content` that copies the relevant
doc files that are used in the documentation. This extension
also modifies files while copying to adjust links and allow
syntax that renders on both GitHub and Sphinx.

Warnings when building the documentation have been
fixed or removed. Fixes include:
- Linking errors
- Typos
- ToC tree errors
- Adding MyST configuration data
- Removing anchors on the form <a name="my-anchor"></a> as they
  cannot be used by sphinx
- Changed the GitHub rendered emoji `:heavy_check_mark:` to the
ascii symbol ✔ so that it renders with Sphinx

Signed-off-by: Gaute Svanes Lunde <gaute.lunde@nordicsemi.no>

* workflows: expand markdown fences in spellchecker

Expand the markdown fences to include MyST for Sphinx syntax
like the following:

```{include} my/file.md
```

Signed-off-by: Gaute Svanes Lunde <gaute.lunde@nordicsemi.no>

* workflows: add docbuild workflow

Add a workflow for building the documentation with Sphinx and
deploy the generated html to the
`project-chip/connectedhomeip-doc` repository to be used by
github.io. This will overwrite the existing Doxygen
documentation that is hosted there.

Signed-off-by: Gaute Svanes Lunde <gaute.lunde@nordicsemi.no>

* Restyle

* doc: move link targets to build folder

Created a change in the `external_content` extension so that
links to content that is also being copied to the _build folder
will point to their new location instead. This enables linking
to sections on other pages.

This change also enables link checking for sections on other
pages, and therefore also includes a fix to some previously
broken section links.

Signed-off-by: Gaute Svanes Lunde <gaute.lunde@nordicsemi.no>

Signed-off-by: Gaute Svanes Lunde <gaute.lunde@nordicsemi.no>
Co-authored-by: Andrei Litvin <andy314@gmail.com>
@gautesl gautesl mentioned this pull request Jan 10, 2023
lecndav pushed a commit to lecndav/connectedhomeip that referenced this pull request Mar 22, 2023
* doc: add sphinx documentation framework

Added the basics for a sphinx-based doc portal.

Added an extension `external_content` that copies the relevant
doc files that are used in the documentation. This extension
also modifies files while copying to adjust links and allow
syntax that renders on both GitHub and Sphinx.

Warnings when building the documentation have been
fixed or removed. Fixes include:
- Linking errors
- Typos
- ToC tree errors
- Adding MyST configuration data
- Removing anchors on the form <a name="my-anchor"></a> as they
  cannot be used by sphinx
- Changed the GitHub rendered emoji `:heavy_check_mark:` to the
ascii symbol ✔ so that it renders with Sphinx

Signed-off-by: Gaute Svanes Lunde <gaute.lunde@nordicsemi.no>

* workflows: expand markdown fences in spellchecker

Expand the markdown fences to include MyST for Sphinx syntax
like the following:

```{include} my/file.md
```

Signed-off-by: Gaute Svanes Lunde <gaute.lunde@nordicsemi.no>

* workflows: add docbuild workflow

Add a workflow for building the documentation with Sphinx and
deploy the generated html to the
`project-chip/connectedhomeip-doc` repository to be used by
github.io. This will overwrite the existing Doxygen
documentation that is hosted there.

Signed-off-by: Gaute Svanes Lunde <gaute.lunde@nordicsemi.no>

* Restyle

* doc: move link targets to build folder

Created a change in the `external_content` extension so that
links to content that is also being copied to the _build folder
will point to their new location instead. This enables linking
to sections on other pages.

This change also enables link checking for sections on other
pages, and therefore also includes a fix to some previously
broken section links.

Signed-off-by: Gaute Svanes Lunde <gaute.lunde@nordicsemi.no>

Signed-off-by: Gaute Svanes Lunde <gaute.lunde@nordicsemi.no>
Co-authored-by: Andrei Litvin <andy314@gmail.com>
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.

5 participants