Skip to content

Commit 2e0e4c1

Browse files
committed
PR review changes
1 parent 914e228 commit 2e0e4c1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/source/tutorials/partition_table.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ Introduction
77

88
Partition table is used to define the flash memory organization and the different kind of data will be stored on each partition.
99

10-
You can use one of the predefined partition table schemes available or create your own.
10+
You can use one of the available partition table scheme or create your own. You can see all the different schemes on the `tools/partitions <https://github.com/espressif/arduino-esp32/tree/master/tools/partitions>`_ folder or by the Arduino IDE tools menu `Tools -> Partition Scheme`.
1111

12-
The partition table is created using a CSV file format with the following format:
12+
The partition table is created by a .CSV (Comma-separeted Values) file with the following structure:
1313

1414
.. code-block::
1515
@@ -20,7 +20,7 @@ Where:
2020

2121
1. **Name**
2222

23-
Is the partition name and must be a unique name. This name is not relevant for the system and the size must be at maximum of 16-chars.
23+
Is the partition name and must be a unique name. This name is not relevant for the system and the size must be at maximum of 16-chars (no special chars).
2424

2525
2. **Type**
2626

@@ -102,7 +102,7 @@ Where:
102102
The last column in the CSV file is the flags and it is currently used to define if the partition will be encrypted by the flash encryption feature.
103103

104104

105-
For example, the most common partition is the ``default_8MB.csv`` (see `tools/partitions <https://github.com/espressif/arduino-esp32/tree/master/tools/partitions>`_ folder for some examples):
105+
For example, **the most common partition** is the ``default_8MB.csv`` (see `tools/partitions <https://github.com/espressif/arduino-esp32/tree/master/tools/partitions>`_ folder for some examples):
106106

107107
.. code-block::
108108
@@ -116,7 +116,7 @@ For example, the most common partition is the ``default_8MB.csv`` (see `tools/pa
116116
Using a Custom Partition Scheme
117117
-------------------------------
118118

119-
To create your own partition table, you can create the ``partitions.csv`` file in the same folder you created your sketch. The build system will automatically pick the partition table file and use it instead of the predefined ones.
119+
To create your own partition table, you can create the ``partitions.csv`` file **in the same folder you created your sketch**. The build system will automatically pick the partition table file and use it instead of the predefined ones.
120120

121121
Here is an example you can use for a custom partition table:
122122

0 commit comments

Comments
 (0)