Docs/esp32c6: Rename esp32c6-devkit as esp32c6-devkitc

This commit is contained in:
Eren Terzioglu 2024-03-18 13:21:41 +03:00 committed by Xiang Xiao
parent ce9e298fa0
commit 9bf72d95d9
7 changed files with 4 additions and 4 deletions

View File

@ -82,7 +82,7 @@ Configurations
All of the configurations presented below can be tested by running the following commands::
$ ./tools/configure.sh esp32c6-devkit:<config_name>
$ ./tools/configure.sh esp32c6-devkitc:<config_name>
$ make flash ESPTOOL_PORT=/dev/ttyUSB0 -j
Where <config_name> is the name of board configuration you want to use, i.e.: nsh, buttons, wifi...

View File

@ -88,9 +88,9 @@ First make sure that ``esptool.py`` is installed. This tool is used to convert
the ELF to a compatible ESP32-C6 image and to flash the image into the board.
It can be installed with: ``pip install esptool``.
Configure the NuttX project: ``./tools/configure.sh esp32c6-devkit:nsh``
Run ``make`` to build the project. Note that the conversion mentioned above is
included in the build process.
Configure the NuttX project: ``./tools/configure.sh esp32c6-devkitc:nsh`` or
``./tools/configure.sh esp32c6-devkitm:nsh``Run ``make`` to build the project.
Note that the conversion mentioned above is included in the build process.
The ``esptool.py`` command to flash all the binaries is::
esptool.py --chip esp32c6 --port /dev/ttyUSBXX --baud 921600 write_flash 0x0 bootloader.bin 0x8000 partition-table.bin 0x10000 nuttx.bin