You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/tutorials/partition_table.rst
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,9 @@ Introduction
7
7
8
8
Partition table is used to define the flash memory organization and the different kind of data will be stored on each partition.
9
9
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`.
11
11
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:
13
13
14
14
.. code-block::
15
15
@@ -20,7 +20,7 @@ Where:
20
20
21
21
1. **Name**
22
22
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).
24
24
25
25
2. **Type**
26
26
@@ -102,7 +102,7 @@ Where:
102
102
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.
103
103
104
104
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):
106
106
107
107
.. code-block::
108
108
@@ -116,7 +116,7 @@ For example, the most common partition is the ``default_8MB.csv`` (see `tools/pa
116
116
Using a Custom Partition Scheme
117
117
-------------------------------
118
118
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.
120
120
121
121
Here is an example you can use for a custom partition table:
0 commit comments