docs: add link to esp-idf-kconfig migration guide

This commit is contained in:
Jan Beran
2025-07-29 13:24:14 +02:00
parent 8651d6c240
commit 152aa6bf63
2 changed files with 10 additions and 1 deletions

View File

@@ -74,3 +74,8 @@ To explicitly control constructor order, use the ``constructor()`` function attr
void foo(void); void foo(void);
Replace ``PRIO`` with an integer value. Lower values are executed earlier. This is the preferred method when specific ordering is required. Replace ``PRIO`` with an integer value. Lower values are executed earlier. This is the preferred method when specific ordering is required.
Changes in Configuration Files Syntax
-------------------------------------
ESP-IDF v6 uses esp-idf-kconfig v3, which introduces several changes in the configuration (``Kconfig``) files. For the full list of changes, please refer to the `esp-idf-kconfig migration guide from v2.x to v3.x <https://docs.espressif.com/projects/esp-idf-kconfig/en/latest/developer-guide/migration-guide.html>`_.

View File

@@ -31,7 +31,6 @@ All commands with eFuse functionality now require a serial port to be specified.
For all ``idf.py efuse*`` commands, you now need to specify the serial port with the ``--port`` argument (or ``ESPPORT`` environment variable). If the port is not specified, the command will fail with an error message. For all ``idf.py efuse*`` commands, you now need to specify the serial port with the ``--port`` argument (or ``ESPPORT`` environment variable). If the port is not specified, the command will fail with an error message.
Python 3.9 Deprecation Python 3.9 Deprecation
---------------------- ----------------------
@@ -40,3 +39,8 @@ Python 3.9 is no longer supported. The minimum required Python version is now 3.
Refer to the official `Python documentation <https://docs.python.org/3/using/index.html>`_ for instructions on upgrading Python for your operating system. Refer to the official `Python documentation <https://docs.python.org/3/using/index.html>`_ for instructions on upgrading Python for your operating system.
For Linux users, it is recommended to upgrade to a newer version of your distribution that includes a supported Python version. For Linux users, it is recommended to upgrade to a newer version of your distribution that includes a supported Python version.
Changes in Configuration Files Syntax
-------------------------------------
ESP-IDF v6 uses esp-idf-kconfig v3, which introduces several changes in the configuration (``Kconfig``) files. For the full list of changes, please refer to the `esp-idf-kconfig migration guide from v2.x to v3.x <https://docs.espressif.com/projects/esp-idf-kconfig/en/latest/developer-guide/migration-guide.html>`_.