mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-23 17:24:44 +00:00
util: Update docs as per review comments
This commit is contained in:
@@ -116,6 +116,7 @@ A sample CSV file is provided with the utility::
|
||||
|
||||
python nvs_partition_gen.py sample_singlepage_blob.csv partition_single_page.bin --version v1
|
||||
|
||||
|
||||
+------------------------+----------------------------------------------------------------------------------------------+
|
||||
| Arguments | Description |
|
||||
+========================+==============================================================================================+
|
||||
@@ -123,7 +124,7 @@ A sample CSV file is provided with the utility::
|
||||
+------------------------+----------------------------------------------------------------------------------------------+
|
||||
| output | Path to output converted binary file. Will use stdout if omitted |
|
||||
+------------------------+----------------------------------------------------------------------------------------------+
|
||||
| size | Size of NVS Partition in hex (must be multiple of 4096). Eg. 0x1000 |
|
||||
| size | Size of NVS Partition in bytes (must be multiple of 4096) |
|
||||
+------------------------+----------------------------------------------------------------------------------------------+
|
||||
| --version {v1,v2} | Set version. Default: v2 |
|
||||
+-------------------------------+---------------------------------------------------------------------------------------+
|
||||
|
@@ -18,7 +18,7 @@
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
from __future__ import division, print_function #, unicode_literals
|
||||
from __future__ import division, print_function
|
||||
from builtins import int, range
|
||||
from io import open
|
||||
import sys
|
||||
@@ -732,7 +732,7 @@ def main():
|
||||
|
||||
parser.add_argument(
|
||||
"size",
|
||||
help='Size of NVS Partition in hex (must be multiple of 4096). Eg. 0x1000')
|
||||
help='Size of NVS Partition in bytes (must be multiple of 4096)')
|
||||
|
||||
parser.add_argument(
|
||||
"--version",
|
||||
|
Reference in New Issue
Block a user