diff --git a/docs/en/get-started/esp32_output_log.inc b/docs/en/get-started/esp32_output_log.inc new file mode 100644 index 0000000000..67b270cf31 --- /dev/null +++ b/docs/en/get-started/esp32_output_log.inc @@ -0,0 +1,39 @@ +.. output_log + +.. code-block:: none + + ... + esptool.py --chip esp32 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 40m --flash_size 2MB 0x8000 partition_table/partition-table.bin 0x1000 bootloader/bootloader.bin 0x10000 hello_world.bin + esptool.py v3.0-dev + Serial port /dev/ttyUSB0 + Connecting........_ + Chip is ESP32D0WDQ6 (revision 0) + Features: WiFi, BT, Dual Core, Coding Scheme None + Crystal is 40MHz + MAC: 24:0a:c4:05:b9:14 + Uploading stub... + Running stub... + Stub running... + Changing baud rate to 460800 + Changed. + Configuring flash size... + Compressed 3072 bytes to 103... + Writing at 0x00008000... (100 %) + Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 5962.8 kbit/s)... + Hash of data verified. + Compressed 26096 bytes to 15408... + Writing at 0x00001000... (100 %) + Wrote 26096 bytes (15408 compressed) at 0x00001000 in 0.4 seconds (effective 546.7 kbit/s)... + Hash of data verified. + Compressed 147104 bytes to 77364... + Writing at 0x00010000... (20 %) + Writing at 0x00014000... (40 %) + Writing at 0x00018000... (60 %) + Writing at 0x0001c000... (80 %) + Writing at 0x00020000... (100 %) + Wrote 147104 bytes (77364 compressed) at 0x00010000 in 1.9 seconds (effective 615.5 kbit/s)... + Hash of data verified. + + Leaving... + Hard resetting via RTS pin... + Done \ No newline at end of file diff --git a/docs/en/get-started/esp32c2_output_log.inc b/docs/en/get-started/esp32c2_output_log.inc new file mode 100644 index 0000000000..e194676a33 --- /dev/null +++ b/docs/en/get-started/esp32c2_output_log.inc @@ -0,0 +1,41 @@ +.. output_log + +.. code-block:: none + + ... + esptool.py esp32c2 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 60m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin + esptool.py v3.3.1 + Serial port /dev/ttyUSB0 + Connecting.... + Chip is ESP32-C2 (revision 1) + Features: Wi-Fi + Crystal is 40MHz + MAC: 10:97:bd:f0:e5:0c + Uploading stub... + Running stub... + Stub running... + Changing baud rate to 460800 + Changed. + Configuring flash size... + Flash will be erased from 0x00000000 to 0x00004fff... + Flash will be erased from 0x00010000 to 0x0002ffff... + Flash will be erased from 0x00008000 to 0x00008fff... + Compressed 18192 bytes to 10989... + Writing at 0x00000000... (100 %) + Wrote 18192 bytes (10989 compressed) at 0x00000000 in 0.6 seconds (effective 248.5 kbit/s)... + Hash of data verified. + Compressed 128640 bytes to 65895... + Writing at 0x00010000... (20 %) + Writing at 0x00019539... (40 %) + Writing at 0x00020bf2... (60 %) + Writing at 0x00027de1... (80 %) + Writing at 0x0002f480... (100 %) + Wrote 128640 bytes (65895 compressed) at 0x00010000 in 1.7 seconds (effective 603.0 kbit/s)... + Hash of data verified. + Compressed 3072 bytes to 103... + Writing at 0x00008000... (100 %) + Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 360.1 kbit/s)... + Hash of data verified. + + Leaving... + Hard resetting via RTS pin... \ No newline at end of file diff --git a/docs/en/get-started/esp32c3_output_log.inc b/docs/en/get-started/esp32c3_output_log.inc new file mode 100644 index 0000000000..33d56b5e48 --- /dev/null +++ b/docs/en/get-started/esp32c3_output_log.inc @@ -0,0 +1,39 @@ +.. output_log + +.. code-block:: none + + ... + esptool.py --chip esp32c3 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x8000 partition_table/partition-table.bin 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin + esptool.py v3.0 + Serial port /dev/ttyUSB0 + Connecting.... + Chip is ESP32-C3 + Features: Wi-Fi + Crystal is 40MHz + MAC: 7c:df:a1:40:02:a4 + Uploading stub... + Running stub... + Stub running... + Changing baud rate to 460800 + Changed. + Configuring flash size... + Compressed 3072 bytes to 103... + Writing at 0x00008000... (100 %) + Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 4238.1 kbit/s)... + Hash of data verified. + Compressed 18960 bytes to 11311... + Writing at 0x00000000... (100 %) + Wrote 18960 bytes (11311 compressed) at 0x00000000 in 0.3 seconds (effective 584.9 kbit/s)... + Hash of data verified. + Compressed 145520 bytes to 71984... + Writing at 0x00010000... (20 %) + Writing at 0x00014000... (40 %) + Writing at 0x00018000... (60 %) + Writing at 0x0001c000... (80 %) + Writing at 0x00020000... (100 %) + Wrote 145520 bytes (71984 compressed) at 0x00010000 in 2.3 seconds (effective 504.4 kbit/s)... + Hash of data verified. + + Leaving... + Hard resetting via RTS pin... + Done \ No newline at end of file diff --git a/docs/en/get-started/esp32c6_output_log.inc b/docs/en/get-started/esp32c6_output_log.inc new file mode 100644 index 0000000000..7c640c2a12 --- /dev/null +++ b/docs/en/get-started/esp32c6_output_log.inc @@ -0,0 +1,49 @@ +.. output_log + +.. code-block:: none + + ... + esptool esp32c6 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset --no-stub write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin + esptool.py v4.3 + Serial port /dev/ttyUSB0 + Connecting.... + Chip is ESP32-C6 (revision v0.0) + Features: WiFi 6, BT 5 + Crystal is 40MHz + MAC: 60:55:f9:f6:01:38 + Changing baud rate to 460800 + Changed. + Enabling default SPI flash mode... + Configuring flash size... + Flash will be erased from 0x00000000 to 0x00004fff... + Flash will be erased from 0x00010000 to 0x00028fff... + Flash will be erased from 0x00008000 to 0x00008fff... + Erasing flash... + Took 0.17s to erase flash block + Writing at 0x00000000... (5 %) + Writing at 0x00000c00... (23 %) + Writing at 0x00001c00... (47 %) + Writing at 0x00003000... (76 %) + Writing at 0x00004000... (100 %) + Wrote 17408 bytes at 0x00000000 in 0.5 seconds (254.6 kbit/s)... + Hash of data verified. + Erasing flash... + Took 0.85s to erase flash block + Writing at 0x00010000... (1 %) + Writing at 0x00014c00... (20 %) + Writing at 0x00019c00... (40 %) + Writing at 0x0001ec00... (60 %) + Writing at 0x00023c00... (80 %) + Writing at 0x00028c00... (100 %) + Wrote 102400 bytes at 0x00010000 in 3.2 seconds (253.5 kbit/s)... + Hash of data verified. + Erasing flash... + Took 0.04s to erase flash block + Writing at 0x00008000... (33 %) + Writing at 0x00008400... (66 %) + Writing at 0x00008800... (100 %) + Wrote 3072 bytes at 0x00008000 in 0.1 seconds (269.0 kbit/s)... + Hash of data verified. + + Leaving... + Hard resetting via RTS pin... \ No newline at end of file diff --git a/docs/en/get-started/esp32h2_output_log.inc b/docs/en/get-started/esp32h2_output_log.inc new file mode 100644 index 0000000000..fe526e923d --- /dev/null +++ b/docs/en/get-started/esp32h2_output_log.inc @@ -0,0 +1,41 @@ +.. output_log + +.. code-block:: none + + ... + esptool esp32h2 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 48m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin + esptool.py v4.6 + Serial port /dev/ttyUSB0 + Connecting.... + Chip is ESP32-H2 (revision v0.1) + Features: BLE + Crystal is 32MHz + MAC: 60:55:f9:f7:3e:93:ff:fe + Uploading stub... + Running stub... + Stub running... + Changing baud rate to 460800 + Changed. + Configuring flash size... + Flash will be erased from 0x00000000 to 0x00005fff... + Flash will be erased from 0x00010000 to 0x00034fff... + Flash will be erased from 0x00008000 to 0x00008fff... + Compressed 20880 bytes to 12788... + Writing at 0x00000000... (100 %) + Wrote 20880 bytes (12788 compressed) at 0x00000000 in 0.6 seconds (effective 297.5 kbit/s)... + Hash of data verified. + Compressed 149424 bytes to 79574... + Writing at 0x00010000... (20 %) + Writing at 0x00019959... (40 %) + Writing at 0x00020bb5... (60 %) + Writing at 0x00026d8f... (80 %) + Writing at 0x0002e60a... (100 %) + Wrote 149424 bytes (79574 compressed) at 0x00010000 in 2.1 seconds (effective 571.7 kbit/s)... + Hash of data verified. + Compressed 3072 bytes to 103... + Writing at 0x00008000... (100 %) + Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 539.7 kbit/s)... + Hash of data verified. + + Leaving... + Hard resetting via RTS pin... \ No newline at end of file diff --git a/docs/en/get-started/esp32p4_output_log.inc b/docs/en/get-started/esp32p4_output_log.inc new file mode 100644 index 0000000000..69a66d4736 --- /dev/null +++ b/docs/en/get-started/esp32p4_output_log.inc @@ -0,0 +1 @@ +.. output_log \ No newline at end of file diff --git a/docs/en/get-started/esp32s2_output_log.inc b/docs/en/get-started/esp32s2_output_log.inc new file mode 100644 index 0000000000..95279df68b --- /dev/null +++ b/docs/en/get-started/esp32s2_output_log.inc @@ -0,0 +1,39 @@ +.. output_log + +.. code-block:: none + + ... + esptool.py --chip esp32s2 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 40m --flash_size 2MB 0x8000 partition_table/partition-table.bin 0x1000 bootloader/bootloader.bin 0x10000 hello_world.bin + esptool.py v3.0-dev + Serial port /dev/ttyUSB0 + Connecting.... + Chip is ESP32-S2 + Features: WiFi + Crystal is 40MHz + MAC: 18:fe:34:72:50:e3 + Uploading stub... + Running stub... + Stub running... + Changing baud rate to 460800 + Changed. + Configuring flash size... + Compressed 3072 bytes to 103... + Writing at 0x00008000... (100 %) + Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 3851.6 kbit/s)... + Hash of data verified. + Compressed 22592 bytes to 13483... + Writing at 0x00001000... (100 %) + Wrote 22592 bytes (13483 compressed) at 0x00001000 in 0.3 seconds (effective 595.1 kbit/s)... + Hash of data verified. + Compressed 140048 bytes to 70298... + Writing at 0x00010000... (20 %) + Writing at 0x00014000... (40 %) + Writing at 0x00018000... (60 %) + Writing at 0x0001c000... (80 %) + Writing at 0x00020000... (100 %) + Wrote 140048 bytes (70298 compressed) at 0x00010000 in 1.7 seconds (effective 662.5 kbit/s)... + Hash of data verified. + + Leaving... + Hard resetting via RTS pin... + Done \ No newline at end of file diff --git a/docs/en/get-started/esp32s3_output_log.inc b/docs/en/get-started/esp32s3_output_log.inc new file mode 100644 index 0000000000..b8caeaed3c --- /dev/null +++ b/docs/en/get-started/esp32s3_output_log.inc @@ -0,0 +1,43 @@ +.. output_log + +.. code-block:: none + + ... + esptool.py esp32s3 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin + esptool.py v3.2-dev + Serial port /dev/ttyUSB0 + Connecting.... + Chip is ESP32-S3 + Features: WiFi, BLE + Crystal is 40MHz + MAC: 7c:df:a1:e0:00:64 + Uploading stub... + Running stub... + Stub running... + Changing baud rate to 460800 + Changed. + Configuring flash size... + Flash will be erased from 0x00000000 to 0x00004fff... + Flash will be erased from 0x00010000 to 0x00039fff... + Flash will be erased from 0x00008000 to 0x00008fff... + Compressed 18896 bytes to 11758... + Writing at 0x00000000... (100 %) + Wrote 18896 bytes (11758 compressed) at 0x00000000 in 0.5 seconds (effective 279.9 kbit/s)... + Hash of data verified. + Compressed 168208 bytes to 88178... + Writing at 0x00010000... (16 %) + Writing at 0x0001a80f... (33 %) + Writing at 0x000201f1... (50 %) + Writing at 0x00025dcf... (66 %) + Writing at 0x0002d0be... (83 %) + Writing at 0x00036c07... (100 %) + Wrote 168208 bytes (88178 compressed) at 0x00010000 in 2.4 seconds (effective 569.2 kbit/s)... + Hash of data verified. + Compressed 3072 bytes to 103... + Writing at 0x00008000... (100 %) + Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 478.9 kbit/s)... + Hash of data verified. + + Leaving... + Hard resetting via RTS pin... + Done \ No newline at end of file diff --git a/docs/en/get-started/start-project.rst b/docs/en/get-started/start-project.rst index 89610ac9b0..1e837f8edd 100644 --- a/docs/en/get-started/start-project.rst +++ b/docs/en/get-started/start-project.rst @@ -60,305 +60,8 @@ Normal Operation When flashing, you will see the output log similar to the following: -.. only:: esp32 - - .. code-block:: none - - ... - esptool.py --chip esp32 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 40m --flash_size 2MB 0x8000 partition_table/partition-table.bin 0x1000 bootloader/bootloader.bin 0x10000 hello_world.bin - esptool.py v3.0-dev - Serial port /dev/ttyUSB0 - Connecting........_ - Chip is ESP32D0WDQ6 (revision 0) - Features: WiFi, BT, Dual Core, Coding Scheme None - Crystal is 40MHz - MAC: 24:0a:c4:05:b9:14 - Uploading stub... - Running stub... - Stub running... - Changing baud rate to 460800 - Changed. - Configuring flash size... - Compressed 3072 bytes to 103... - Writing at 0x00008000... (100 %) - Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 5962.8 kbit/s)... - Hash of data verified. - Compressed 26096 bytes to 15408... - Writing at 0x00001000... (100 %) - Wrote 26096 bytes (15408 compressed) at 0x00001000 in 0.4 seconds (effective 546.7 kbit/s)... - Hash of data verified. - Compressed 147104 bytes to 77364... - Writing at 0x00010000... (20 %) - Writing at 0x00014000... (40 %) - Writing at 0x00018000... (60 %) - Writing at 0x0001c000... (80 %) - Writing at 0x00020000... (100 %) - Wrote 147104 bytes (77364 compressed) at 0x00010000 in 1.9 seconds (effective 615.5 kbit/s)... - Hash of data verified. - - Leaving... - Hard resetting via RTS pin... - Done - -.. only:: esp32s2 - - .. code-block:: none - - ... - esptool.py --chip esp32s2 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 40m --flash_size 2MB 0x8000 partition_table/partition-table.bin 0x1000 bootloader/bootloader.bin 0x10000 hello_world.bin - esptool.py v3.0-dev - Serial port /dev/ttyUSB0 - Connecting.... - Chip is ESP32-S2 - Features: WiFi - Crystal is 40MHz - MAC: 18:fe:34:72:50:e3 - Uploading stub... - Running stub... - Stub running... - Changing baud rate to 460800 - Changed. - Configuring flash size... - Compressed 3072 bytes to 103... - Writing at 0x00008000... (100 %) - Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 3851.6 kbit/s)... - Hash of data verified. - Compressed 22592 bytes to 13483... - Writing at 0x00001000... (100 %) - Wrote 22592 bytes (13483 compressed) at 0x00001000 in 0.3 seconds (effective 595.1 kbit/s)... - Hash of data verified. - Compressed 140048 bytes to 70298... - Writing at 0x00010000... (20 %) - Writing at 0x00014000... (40 %) - Writing at 0x00018000... (60 %) - Writing at 0x0001c000... (80 %) - Writing at 0x00020000... (100 %) - Wrote 140048 bytes (70298 compressed) at 0x00010000 in 1.7 seconds (effective 662.5 kbit/s)... - Hash of data verified. - - Leaving... - Hard resetting via RTS pin... - Done - -.. only:: esp32s3 - - .. code-block:: none - - ... - esptool.py esp32s3 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin - esptool.py v3.2-dev - Serial port /dev/ttyUSB0 - Connecting.... - Chip is ESP32-S3 - Features: WiFi, BLE - Crystal is 40MHz - MAC: 7c:df:a1:e0:00:64 - Uploading stub... - Running stub... - Stub running... - Changing baud rate to 460800 - Changed. - Configuring flash size... - Flash will be erased from 0x00000000 to 0x00004fff... - Flash will be erased from 0x00010000 to 0x00039fff... - Flash will be erased from 0x00008000 to 0x00008fff... - Compressed 18896 bytes to 11758... - Writing at 0x00000000... (100 %) - Wrote 18896 bytes (11758 compressed) at 0x00000000 in 0.5 seconds (effective 279.9 kbit/s)... - Hash of data verified. - Compressed 168208 bytes to 88178... - Writing at 0x00010000... (16 %) - Writing at 0x0001a80f... (33 %) - Writing at 0x000201f1... (50 %) - Writing at 0x00025dcf... (66 %) - Writing at 0x0002d0be... (83 %) - Writing at 0x00036c07... (100 %) - Wrote 168208 bytes (88178 compressed) at 0x00010000 in 2.4 seconds (effective 569.2 kbit/s)... - Hash of data verified. - Compressed 3072 bytes to 103... - Writing at 0x00008000... (100 %) - Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 478.9 kbit/s)... - Hash of data verified. - - Leaving... - Hard resetting via RTS pin... - Done - - -.. only:: esp32c2 - - .. code-block:: none - - ... - esptool.py esp32c2 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 60m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin - esptool.py v3.3.1 - Serial port /dev/ttyUSB0 - Connecting.... - Chip is ESP32-C2 (revision 1) - Features: Wi-Fi - Crystal is 40MHz - MAC: 10:97:bd:f0:e5:0c - Uploading stub... - Running stub... - Stub running... - Changing baud rate to 460800 - Changed. - Configuring flash size... - Flash will be erased from 0x00000000 to 0x00004fff... - Flash will be erased from 0x00010000 to 0x0002ffff... - Flash will be erased from 0x00008000 to 0x00008fff... - Compressed 18192 bytes to 10989... - Writing at 0x00000000... (100 %) - Wrote 18192 bytes (10989 compressed) at 0x00000000 in 0.6 seconds (effective 248.5 kbit/s)... - Hash of data verified. - Compressed 128640 bytes to 65895... - Writing at 0x00010000... (20 %) - Writing at 0x00019539... (40 %) - Writing at 0x00020bf2... (60 %) - Writing at 0x00027de1... (80 %) - Writing at 0x0002f480... (100 %) - Wrote 128640 bytes (65895 compressed) at 0x00010000 in 1.7 seconds (effective 603.0 kbit/s)... - Hash of data verified. - Compressed 3072 bytes to 103... - Writing at 0x00008000... (100 %) - Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 360.1 kbit/s)... - Hash of data verified. - - Leaving... - Hard resetting via RTS pin... - - -.. only:: esp32c3 - - .. code-block:: none - - ... - esptool.py --chip esp32c3 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x8000 partition_table/partition-table.bin 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin - esptool.py v3.0 - Serial port /dev/ttyUSB0 - Connecting.... - Chip is ESP32-C3 - Features: Wi-Fi - Crystal is 40MHz - MAC: 7c:df:a1:40:02:a4 - Uploading stub... - Running stub... - Stub running... - Changing baud rate to 460800 - Changed. - Configuring flash size... - Compressed 3072 bytes to 103... - Writing at 0x00008000... (100 %) - Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 4238.1 kbit/s)... - Hash of data verified. - Compressed 18960 bytes to 11311... - Writing at 0x00000000... (100 %) - Wrote 18960 bytes (11311 compressed) at 0x00000000 in 0.3 seconds (effective 584.9 kbit/s)... - Hash of data verified. - Compressed 145520 bytes to 71984... - Writing at 0x00010000... (20 %) - Writing at 0x00014000... (40 %) - Writing at 0x00018000... (60 %) - Writing at 0x0001c000... (80 %) - Writing at 0x00020000... (100 %) - Wrote 145520 bytes (71984 compressed) at 0x00010000 in 2.3 seconds (effective 504.4 kbit/s)... - Hash of data verified. - - Leaving... - Hard resetting via RTS pin... - Done - -.. only:: esp32c6 - - .. code-block:: none - - ... - esptool esp32c6 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset --no-stub write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin - esptool.py v4.3 - Serial port /dev/ttyUSB0 - Connecting.... - Chip is ESP32-C6 (revision v0.0) - Features: WiFi 6, BT 5 - Crystal is 40MHz - MAC: 60:55:f9:f6:01:38 - Changing baud rate to 460800 - Changed. - Enabling default SPI flash mode... - Configuring flash size... - Flash will be erased from 0x00000000 to 0x00004fff... - Flash will be erased from 0x00010000 to 0x00028fff... - Flash will be erased from 0x00008000 to 0x00008fff... - Erasing flash... - Took 0.17s to erase flash block - Writing at 0x00000000... (5 %) - Writing at 0x00000c00... (23 %) - Writing at 0x00001c00... (47 %) - Writing at 0x00003000... (76 %) - Writing at 0x00004000... (100 %) - Wrote 17408 bytes at 0x00000000 in 0.5 seconds (254.6 kbit/s)... - Hash of data verified. - Erasing flash... - Took 0.85s to erase flash block - Writing at 0x00010000... (1 %) - Writing at 0x00014c00... (20 %) - Writing at 0x00019c00... (40 %) - Writing at 0x0001ec00... (60 %) - Writing at 0x00023c00... (80 %) - Writing at 0x00028c00... (100 %) - Wrote 102400 bytes at 0x00010000 in 3.2 seconds (253.5 kbit/s)... - Hash of data verified. - Erasing flash... - Took 0.04s to erase flash block - Writing at 0x00008000... (33 %) - Writing at 0x00008400... (66 %) - Writing at 0x00008800... (100 %) - Wrote 3072 bytes at 0x00008000 in 0.1 seconds (269.0 kbit/s)... - Hash of data verified. - - Leaving... - Hard resetting via RTS pin... - -.. only:: esp32h2 - - .. code-block:: none - - ... - esptool esp32h2 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 48m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin - esptool.py v4.6 - Serial port /dev/ttyUSB0 - Connecting.... - Chip is ESP32-H2 (revision v0.1) - Features: BLE - Crystal is 32MHz - MAC: 60:55:f9:f7:3e:93:ff:fe - Uploading stub... - Running stub... - Stub running... - Changing baud rate to 460800 - Changed. - Configuring flash size... - Flash will be erased from 0x00000000 to 0x00005fff... - Flash will be erased from 0x00010000 to 0x00034fff... - Flash will be erased from 0x00008000 to 0x00008fff... - Compressed 20880 bytes to 12788... - Writing at 0x00000000... (100 %) - Wrote 20880 bytes (12788 compressed) at 0x00000000 in 0.6 seconds (effective 297.5 kbit/s)... - Hash of data verified. - Compressed 149424 bytes to 79574... - Writing at 0x00010000... (20 %) - Writing at 0x00019959... (40 %) - Writing at 0x00020bb5... (60 %) - Writing at 0x00026d8f... (80 %) - Writing at 0x0002e60a... (100 %) - Wrote 149424 bytes (79574 compressed) at 0x00010000 in 2.1 seconds (effective 571.7 kbit/s)... - Hash of data verified. - Compressed 3072 bytes to 103... - Writing at 0x00008000... (100 %) - Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 539.7 kbit/s)... - Hash of data verified. - - Leaving... - Hard resetting via RTS pin... +.. include:: {IDF_TARGET_PATH_NAME}_output_log.inc + :start-after: output_log If there are no issues by the end of the flash process, the board will reboot and start up the "hello_world" application. diff --git a/docs/zh_CN/get-started/esp32_output_log.inc b/docs/zh_CN/get-started/esp32_output_log.inc new file mode 100644 index 0000000000..67b270cf31 --- /dev/null +++ b/docs/zh_CN/get-started/esp32_output_log.inc @@ -0,0 +1,39 @@ +.. output_log + +.. code-block:: none + + ... + esptool.py --chip esp32 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 40m --flash_size 2MB 0x8000 partition_table/partition-table.bin 0x1000 bootloader/bootloader.bin 0x10000 hello_world.bin + esptool.py v3.0-dev + Serial port /dev/ttyUSB0 + Connecting........_ + Chip is ESP32D0WDQ6 (revision 0) + Features: WiFi, BT, Dual Core, Coding Scheme None + Crystal is 40MHz + MAC: 24:0a:c4:05:b9:14 + Uploading stub... + Running stub... + Stub running... + Changing baud rate to 460800 + Changed. + Configuring flash size... + Compressed 3072 bytes to 103... + Writing at 0x00008000... (100 %) + Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 5962.8 kbit/s)... + Hash of data verified. + Compressed 26096 bytes to 15408... + Writing at 0x00001000... (100 %) + Wrote 26096 bytes (15408 compressed) at 0x00001000 in 0.4 seconds (effective 546.7 kbit/s)... + Hash of data verified. + Compressed 147104 bytes to 77364... + Writing at 0x00010000... (20 %) + Writing at 0x00014000... (40 %) + Writing at 0x00018000... (60 %) + Writing at 0x0001c000... (80 %) + Writing at 0x00020000... (100 %) + Wrote 147104 bytes (77364 compressed) at 0x00010000 in 1.9 seconds (effective 615.5 kbit/s)... + Hash of data verified. + + Leaving... + Hard resetting via RTS pin... + Done \ No newline at end of file diff --git a/docs/zh_CN/get-started/esp32c2_output_log.inc b/docs/zh_CN/get-started/esp32c2_output_log.inc new file mode 100644 index 0000000000..e194676a33 --- /dev/null +++ b/docs/zh_CN/get-started/esp32c2_output_log.inc @@ -0,0 +1,41 @@ +.. output_log + +.. code-block:: none + + ... + esptool.py esp32c2 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 60m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin + esptool.py v3.3.1 + Serial port /dev/ttyUSB0 + Connecting.... + Chip is ESP32-C2 (revision 1) + Features: Wi-Fi + Crystal is 40MHz + MAC: 10:97:bd:f0:e5:0c + Uploading stub... + Running stub... + Stub running... + Changing baud rate to 460800 + Changed. + Configuring flash size... + Flash will be erased from 0x00000000 to 0x00004fff... + Flash will be erased from 0x00010000 to 0x0002ffff... + Flash will be erased from 0x00008000 to 0x00008fff... + Compressed 18192 bytes to 10989... + Writing at 0x00000000... (100 %) + Wrote 18192 bytes (10989 compressed) at 0x00000000 in 0.6 seconds (effective 248.5 kbit/s)... + Hash of data verified. + Compressed 128640 bytes to 65895... + Writing at 0x00010000... (20 %) + Writing at 0x00019539... (40 %) + Writing at 0x00020bf2... (60 %) + Writing at 0x00027de1... (80 %) + Writing at 0x0002f480... (100 %) + Wrote 128640 bytes (65895 compressed) at 0x00010000 in 1.7 seconds (effective 603.0 kbit/s)... + Hash of data verified. + Compressed 3072 bytes to 103... + Writing at 0x00008000... (100 %) + Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 360.1 kbit/s)... + Hash of data verified. + + Leaving... + Hard resetting via RTS pin... \ No newline at end of file diff --git a/docs/zh_CN/get-started/esp32c3_output_log.inc b/docs/zh_CN/get-started/esp32c3_output_log.inc new file mode 100644 index 0000000000..33d56b5e48 --- /dev/null +++ b/docs/zh_CN/get-started/esp32c3_output_log.inc @@ -0,0 +1,39 @@ +.. output_log + +.. code-block:: none + + ... + esptool.py --chip esp32c3 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x8000 partition_table/partition-table.bin 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin + esptool.py v3.0 + Serial port /dev/ttyUSB0 + Connecting.... + Chip is ESP32-C3 + Features: Wi-Fi + Crystal is 40MHz + MAC: 7c:df:a1:40:02:a4 + Uploading stub... + Running stub... + Stub running... + Changing baud rate to 460800 + Changed. + Configuring flash size... + Compressed 3072 bytes to 103... + Writing at 0x00008000... (100 %) + Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 4238.1 kbit/s)... + Hash of data verified. + Compressed 18960 bytes to 11311... + Writing at 0x00000000... (100 %) + Wrote 18960 bytes (11311 compressed) at 0x00000000 in 0.3 seconds (effective 584.9 kbit/s)... + Hash of data verified. + Compressed 145520 bytes to 71984... + Writing at 0x00010000... (20 %) + Writing at 0x00014000... (40 %) + Writing at 0x00018000... (60 %) + Writing at 0x0001c000... (80 %) + Writing at 0x00020000... (100 %) + Wrote 145520 bytes (71984 compressed) at 0x00010000 in 2.3 seconds (effective 504.4 kbit/s)... + Hash of data verified. + + Leaving... + Hard resetting via RTS pin... + Done \ No newline at end of file diff --git a/docs/zh_CN/get-started/esp32c6_output_log.inc b/docs/zh_CN/get-started/esp32c6_output_log.inc new file mode 100644 index 0000000000..7c640c2a12 --- /dev/null +++ b/docs/zh_CN/get-started/esp32c6_output_log.inc @@ -0,0 +1,49 @@ +.. output_log + +.. code-block:: none + + ... + esptool esp32c6 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset --no-stub write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin + esptool.py v4.3 + Serial port /dev/ttyUSB0 + Connecting.... + Chip is ESP32-C6 (revision v0.0) + Features: WiFi 6, BT 5 + Crystal is 40MHz + MAC: 60:55:f9:f6:01:38 + Changing baud rate to 460800 + Changed. + Enabling default SPI flash mode... + Configuring flash size... + Flash will be erased from 0x00000000 to 0x00004fff... + Flash will be erased from 0x00010000 to 0x00028fff... + Flash will be erased from 0x00008000 to 0x00008fff... + Erasing flash... + Took 0.17s to erase flash block + Writing at 0x00000000... (5 %) + Writing at 0x00000c00... (23 %) + Writing at 0x00001c00... (47 %) + Writing at 0x00003000... (76 %) + Writing at 0x00004000... (100 %) + Wrote 17408 bytes at 0x00000000 in 0.5 seconds (254.6 kbit/s)... + Hash of data verified. + Erasing flash... + Took 0.85s to erase flash block + Writing at 0x00010000... (1 %) + Writing at 0x00014c00... (20 %) + Writing at 0x00019c00... (40 %) + Writing at 0x0001ec00... (60 %) + Writing at 0x00023c00... (80 %) + Writing at 0x00028c00... (100 %) + Wrote 102400 bytes at 0x00010000 in 3.2 seconds (253.5 kbit/s)... + Hash of data verified. + Erasing flash... + Took 0.04s to erase flash block + Writing at 0x00008000... (33 %) + Writing at 0x00008400... (66 %) + Writing at 0x00008800... (100 %) + Wrote 3072 bytes at 0x00008000 in 0.1 seconds (269.0 kbit/s)... + Hash of data verified. + + Leaving... + Hard resetting via RTS pin... \ No newline at end of file diff --git a/docs/zh_CN/get-started/esp32h2_output_log.inc b/docs/zh_CN/get-started/esp32h2_output_log.inc new file mode 100644 index 0000000000..fe526e923d --- /dev/null +++ b/docs/zh_CN/get-started/esp32h2_output_log.inc @@ -0,0 +1,41 @@ +.. output_log + +.. code-block:: none + + ... + esptool esp32h2 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 48m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin + esptool.py v4.6 + Serial port /dev/ttyUSB0 + Connecting.... + Chip is ESP32-H2 (revision v0.1) + Features: BLE + Crystal is 32MHz + MAC: 60:55:f9:f7:3e:93:ff:fe + Uploading stub... + Running stub... + Stub running... + Changing baud rate to 460800 + Changed. + Configuring flash size... + Flash will be erased from 0x00000000 to 0x00005fff... + Flash will be erased from 0x00010000 to 0x00034fff... + Flash will be erased from 0x00008000 to 0x00008fff... + Compressed 20880 bytes to 12788... + Writing at 0x00000000... (100 %) + Wrote 20880 bytes (12788 compressed) at 0x00000000 in 0.6 seconds (effective 297.5 kbit/s)... + Hash of data verified. + Compressed 149424 bytes to 79574... + Writing at 0x00010000... (20 %) + Writing at 0x00019959... (40 %) + Writing at 0x00020bb5... (60 %) + Writing at 0x00026d8f... (80 %) + Writing at 0x0002e60a... (100 %) + Wrote 149424 bytes (79574 compressed) at 0x00010000 in 2.1 seconds (effective 571.7 kbit/s)... + Hash of data verified. + Compressed 3072 bytes to 103... + Writing at 0x00008000... (100 %) + Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 539.7 kbit/s)... + Hash of data verified. + + Leaving... + Hard resetting via RTS pin... \ No newline at end of file diff --git a/docs/zh_CN/get-started/esp32p4_output_log.inc b/docs/zh_CN/get-started/esp32p4_output_log.inc new file mode 100644 index 0000000000..69a66d4736 --- /dev/null +++ b/docs/zh_CN/get-started/esp32p4_output_log.inc @@ -0,0 +1 @@ +.. output_log \ No newline at end of file diff --git a/docs/zh_CN/get-started/esp32s2_output_log.inc b/docs/zh_CN/get-started/esp32s2_output_log.inc new file mode 100644 index 0000000000..95279df68b --- /dev/null +++ b/docs/zh_CN/get-started/esp32s2_output_log.inc @@ -0,0 +1,39 @@ +.. output_log + +.. code-block:: none + + ... + esptool.py --chip esp32s2 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 40m --flash_size 2MB 0x8000 partition_table/partition-table.bin 0x1000 bootloader/bootloader.bin 0x10000 hello_world.bin + esptool.py v3.0-dev + Serial port /dev/ttyUSB0 + Connecting.... + Chip is ESP32-S2 + Features: WiFi + Crystal is 40MHz + MAC: 18:fe:34:72:50:e3 + Uploading stub... + Running stub... + Stub running... + Changing baud rate to 460800 + Changed. + Configuring flash size... + Compressed 3072 bytes to 103... + Writing at 0x00008000... (100 %) + Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 3851.6 kbit/s)... + Hash of data verified. + Compressed 22592 bytes to 13483... + Writing at 0x00001000... (100 %) + Wrote 22592 bytes (13483 compressed) at 0x00001000 in 0.3 seconds (effective 595.1 kbit/s)... + Hash of data verified. + Compressed 140048 bytes to 70298... + Writing at 0x00010000... (20 %) + Writing at 0x00014000... (40 %) + Writing at 0x00018000... (60 %) + Writing at 0x0001c000... (80 %) + Writing at 0x00020000... (100 %) + Wrote 140048 bytes (70298 compressed) at 0x00010000 in 1.7 seconds (effective 662.5 kbit/s)... + Hash of data verified. + + Leaving... + Hard resetting via RTS pin... + Done \ No newline at end of file diff --git a/docs/zh_CN/get-started/esp32s3_output_log.inc b/docs/zh_CN/get-started/esp32s3_output_log.inc new file mode 100644 index 0000000000..b8caeaed3c --- /dev/null +++ b/docs/zh_CN/get-started/esp32s3_output_log.inc @@ -0,0 +1,43 @@ +.. output_log + +.. code-block:: none + + ... + esptool.py esp32s3 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin + esptool.py v3.2-dev + Serial port /dev/ttyUSB0 + Connecting.... + Chip is ESP32-S3 + Features: WiFi, BLE + Crystal is 40MHz + MAC: 7c:df:a1:e0:00:64 + Uploading stub... + Running stub... + Stub running... + Changing baud rate to 460800 + Changed. + Configuring flash size... + Flash will be erased from 0x00000000 to 0x00004fff... + Flash will be erased from 0x00010000 to 0x00039fff... + Flash will be erased from 0x00008000 to 0x00008fff... + Compressed 18896 bytes to 11758... + Writing at 0x00000000... (100 %) + Wrote 18896 bytes (11758 compressed) at 0x00000000 in 0.5 seconds (effective 279.9 kbit/s)... + Hash of data verified. + Compressed 168208 bytes to 88178... + Writing at 0x00010000... (16 %) + Writing at 0x0001a80f... (33 %) + Writing at 0x000201f1... (50 %) + Writing at 0x00025dcf... (66 %) + Writing at 0x0002d0be... (83 %) + Writing at 0x00036c07... (100 %) + Wrote 168208 bytes (88178 compressed) at 0x00010000 in 2.4 seconds (effective 569.2 kbit/s)... + Hash of data verified. + Compressed 3072 bytes to 103... + Writing at 0x00008000... (100 %) + Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 478.9 kbit/s)... + Hash of data verified. + + Leaving... + Hard resetting via RTS pin... + Done \ No newline at end of file diff --git a/docs/zh_CN/get-started/start-project.rst b/docs/zh_CN/get-started/start-project.rst index b2f46b1f53..0241beea6a 100644 --- a/docs/zh_CN/get-started/start-project.rst +++ b/docs/zh_CN/get-started/start-project.rst @@ -60,305 +60,8 @@ 在烧录过程中,会看到类似如下的输出日志: -.. only:: esp32 - - .. code-block:: none - - ... - esptool.py --chip esp32 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 40m --flash_size 2MB 0x8000 partition_table/partition-table.bin 0x1000 bootloader/bootloader.bin 0x10000 hello_world.bin - esptool.py v3.0-dev - Serial port /dev/ttyUSB0 - Connecting........_ - Chip is ESP32D0WDQ6 (revision 0) - Features: WiFi, BT, Dual Core, Coding Scheme None - Crystal is 40MHz - MAC: 24:0a:c4:05:b9:14 - Uploading stub... - Running stub... - Stub running... - Changing baud rate to 460800 - Changed. - Configuring flash size... - Compressed 3072 bytes to 103... - Writing at 0x00008000... (100 %) - Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 5962.8 kbit/s)... - Hash of data verified. - Compressed 26096 bytes to 15408... - Writing at 0x00001000... (100 %) - Wrote 26096 bytes (15408 compressed) at 0x00001000 in 0.4 seconds (effective 546.7 kbit/s)... - Hash of data verified. - Compressed 147104 bytes to 77364... - Writing at 0x00010000... (20 %) - Writing at 0x00014000... (40 %) - Writing at 0x00018000... (60 %) - Writing at 0x0001c000... (80 %) - Writing at 0x00020000... (100 %) - Wrote 147104 bytes (77364 compressed) at 0x00010000 in 1.9 seconds (effective 615.5 kbit/s)... - Hash of data verified. - - Leaving... - Hard resetting via RTS pin... - Done - -.. only:: esp32s2 - - .. code-block:: none - - ... - esptool.py --chip esp32s2 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 40m --flash_size 2MB 0x8000 partition_table/partition-table.bin 0x1000 bootloader/bootloader.bin 0x10000 hello_world.bin - esptool.py v3.0-dev - Serial port /dev/ttyUSB0 - Connecting.... - Chip is ESP32-S2 - Features: WiFi - Crystal is 40MHz - MAC: 18:fe:34:72:50:e3 - Uploading stub... - Running stub... - Stub running... - Changing baud rate to 460800 - Changed. - Configuring flash size... - Compressed 3072 bytes to 103... - Writing at 0x00008000... (100 %) - Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 3851.6 kbit/s)... - Hash of data verified. - Compressed 22592 bytes to 13483... - Writing at 0x00001000... (100 %) - Wrote 22592 bytes (13483 compressed) at 0x00001000 in 0.3 seconds (effective 595.1 kbit/s)... - Hash of data verified. - Compressed 140048 bytes to 70298... - Writing at 0x00010000... (20 %) - Writing at 0x00014000... (40 %) - Writing at 0x00018000... (60 %) - Writing at 0x0001c000... (80 %) - Writing at 0x00020000... (100 %) - Wrote 140048 bytes (70298 compressed) at 0x00010000 in 1.7 seconds (effective 662.5 kbit/s)... - Hash of data verified. - - Leaving... - Hard resetting via RTS pin... - Done - -.. only:: esp32s3 - - .. code-block:: none - - ... - esptool.py esp32s3 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin - esptool.py v3.2-dev - Serial port /dev/ttyUSB0 - Connecting.... - Chip is ESP32-S3 - Features: WiFi, BLE - Crystal is 40MHz - MAC: 7c:df:a1:e0:00:64 - Uploading stub... - Running stub... - Stub running... - Changing baud rate to 460800 - Changed. - Configuring flash size... - Flash will be erased from 0x00000000 to 0x00004fff... - Flash will be erased from 0x00010000 to 0x00039fff... - Flash will be erased from 0x00008000 to 0x00008fff... - Compressed 18896 bytes to 11758... - Writing at 0x00000000... (100 %) - Wrote 18896 bytes (11758 compressed) at 0x00000000 in 0.5 seconds (effective 279.9 kbit/s)... - Hash of data verified. - Compressed 168208 bytes to 88178... - Writing at 0x00010000... (16 %) - Writing at 0x0001a80f... (33 %) - Writing at 0x000201f1... (50 %) - Writing at 0x00025dcf... (66 %) - Writing at 0x0002d0be... (83 %) - Writing at 0x00036c07... (100 %) - Wrote 168208 bytes (88178 compressed) at 0x00010000 in 2.4 seconds (effective 569.2 kbit/s)... - Hash of data verified. - Compressed 3072 bytes to 103... - Writing at 0x00008000... (100 %) - Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 478.9 kbit/s)... - Hash of data verified. - - Leaving... - Hard resetting via RTS pin... - Done - - -.. only:: esp32c2 - - .. code-block:: none - - ... - esptool.py esp32c2 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 60m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin - esptool.py v3.3.1 - Serial port /dev/ttyUSB0 - Connecting.... - Chip is ESP32-C2 (revision 1) - Features: Wi-Fi - Crystal is 40MHz - MAC: 10:97:bd:f0:e5:0c - Uploading stub... - Running stub... - Stub running... - Changing baud rate to 460800 - Changed. - Configuring flash size... - Flash will be erased from 0x00000000 to 0x00004fff... - Flash will be erased from 0x00010000 to 0x0002ffff... - Flash will be erased from 0x00008000 to 0x00008fff... - Compressed 18192 bytes to 10989... - Writing at 0x00000000... (100 %) - Wrote 18192 bytes (10989 compressed) at 0x00000000 in 0.6 seconds (effective 248.5 kbit/s)... - Hash of data verified. - Compressed 128640 bytes to 65895... - Writing at 0x00010000... (20 %) - Writing at 0x00019539... (40 %) - Writing at 0x00020bf2... (60 %) - Writing at 0x00027de1... (80 %) - Writing at 0x0002f480... (100 %) - Wrote 128640 bytes (65895 compressed) at 0x00010000 in 1.7 seconds (effective 603.0 kbit/s)... - Hash of data verified. - Compressed 3072 bytes to 103... - Writing at 0x00008000... (100 %) - Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.1 seconds (effective 360.1 kbit/s)... - Hash of data verified. - - Leaving... - Hard resetting via RTS pin... - - -.. only:: esp32c3 - - .. code-block:: none - - ... - esptool.py --chip esp32c3 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x8000 partition_table/partition-table.bin 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin - esptool.py v3.0 - Serial port /dev/ttyUSB0 - Connecting.... - Chip is ESP32-C3 - Features: Wi-Fi - Crystal is 40MHz - MAC: 7c:df:a1:40:02:a4 - Uploading stub... - Running stub... - Stub running... - Changing baud rate to 460800 - Changed. - Configuring flash size... - Compressed 3072 bytes to 103... - Writing at 0x00008000... (100 %) - Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 4238.1 kbit/s)... - Hash of data verified. - Compressed 18960 bytes to 11311... - Writing at 0x00000000... (100 %) - Wrote 18960 bytes (11311 compressed) at 0x00000000 in 0.3 seconds (effective 584.9 kbit/s)... - Hash of data verified. - Compressed 145520 bytes to 71984... - Writing at 0x00010000... (20 %) - Writing at 0x00014000... (40 %) - Writing at 0x00018000... (60 %) - Writing at 0x0001c000... (80 %) - Writing at 0x00020000... (100 %) - Wrote 145520 bytes (71984 compressed) at 0x00010000 in 2.3 seconds (effective 504.4 kbit/s)... - Hash of data verified. - - Leaving... - Hard resetting via RTS pin... - Done - -.. only:: esp32c6 - - .. code-block:: none - - ... - esptool esp32c6 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset --no-stub write_flash --flash_mode dio --flash_freq 80m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin - esptool.py v4.3 - Serial port /dev/ttyUSB0 - Connecting.... - Chip is ESP32-C6 (revision v0.0) - Features: WiFi 6, BT 5 - Crystal is 40MHz - MAC: 60:55:f9:f6:01:38 - Changing baud rate to 460800 - Changed. - Enabling default SPI flash mode... - Configuring flash size... - Flash will be erased from 0x00000000 to 0x00004fff... - Flash will be erased from 0x00010000 to 0x00028fff... - Flash will be erased from 0x00008000 to 0x00008fff... - Erasing flash... - Took 0.17s to erase flash block - Writing at 0x00000000... (5 %) - Writing at 0x00000c00... (23 %) - Writing at 0x00001c00... (47 %) - Writing at 0x00003000... (76 %) - Writing at 0x00004000... (100 %) - Wrote 17408 bytes at 0x00000000 in 0.5 seconds (254.6 kbit/s)... - Hash of data verified. - Erasing flash... - Took 0.85s to erase flash block - Writing at 0x00010000... (1 %) - Writing at 0x00014c00... (20 %) - Writing at 0x00019c00... (40 %) - Writing at 0x0001ec00... (60 %) - Writing at 0x00023c00... (80 %) - Writing at 0x00028c00... (100 %) - Wrote 102400 bytes at 0x00010000 in 3.2 seconds (253.5 kbit/s)... - Hash of data verified. - Erasing flash... - Took 0.04s to erase flash block - Writing at 0x00008000... (33 %) - Writing at 0x00008400... (66 %) - Writing at 0x00008800... (100 %) - Wrote 3072 bytes at 0x00008000 in 0.1 seconds (269.0 kbit/s)... - Hash of data verified. - - Leaving... - Hard resetting via RTS pin... - -.. only:: esp32h2 - - .. code-block:: none - - ... - esptool esp32h2 -p /dev/ttyUSB0 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 48m --flash_size 2MB 0x0 bootloader/bootloader.bin 0x10000 hello_world.bin 0x8000 partition_table/partition-table.bin - esptool.py v4.6 - Serial port /dev/ttyUSB0 - Connecting.... - Chip is ESP32-H2 (revision v0.1) - Features: BLE - Crystal is 32MHz - MAC: 60:55:f9:f7:3e:93:ff:fe - Uploading stub... - Running stub... - Stub running... - Changing baud rate to 460800 - Changed. - Configuring flash size... - Flash will be erased from 0x00000000 to 0x00005fff... - Flash will be erased from 0x00010000 to 0x00034fff... - Flash will be erased from 0x00008000 to 0x00008fff... - Compressed 20880 bytes to 12788... - Writing at 0x00000000... (100 %) - Wrote 20880 bytes (12788 compressed) at 0x00000000 in 0.6 seconds (effective 297.5 kbit/s)... - Hash of data verified. - Compressed 149424 bytes to 79574... - Writing at 0x00010000... (20 %) - Writing at 0x00019959... (40 %) - Writing at 0x00020bb5... (60 %) - Writing at 0x00026d8f... (80 %) - Writing at 0x0002e60a... (100 %) - Wrote 149424 bytes (79574 compressed) at 0x00010000 in 2.1 seconds (effective 571.7 kbit/s)... - Hash of data verified. - Compressed 3072 bytes to 103... - Writing at 0x00008000... (100 %) - Wrote 3072 bytes (103 compressed) at 0x00008000 in 0.0 seconds (effective 539.7 kbit/s)... - Hash of data verified. - - Leaving... - Hard resetting via RTS pin... +.. include:: {IDF_TARGET_PATH_NAME}_output_log.inc + :start-after: output_log 如果一切顺利,烧录完成后,开发板将会复位,应用程序 "hello_world" 开始运行。