README.md: add instructions to rust-esp32-example how to produce table of footprints (#35)
Co-authored-by: Juraj Sadel <juraj.sadel@espressif.com>
This commit is contained in:
parent
ce93c6dfe5
commit
7833f60975
14
README.md
14
README.md
|
|
@ -102,3 +102,17 @@ To exit the monitor, press `Ctrl-]`.
|
||||||
```sh
|
```sh
|
||||||
openocd -f board/esp32-wrover-kit-3.3v.cfg
|
openocd -f board/esp32-wrover-kit-3.3v.cfg
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Table of footprints
|
||||||
|
|
||||||
|
Print the memory statistics of the project:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
idf.py size-files
|
||||||
|
```
|
||||||
|
|
||||||
|
or in `json` format:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$IDF_PATH/tools/idf_size.py --files --json build/esp32-hello-rust.map
|
||||||
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue