Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fixes to the esp32 IDF document #2664

Merged
merged 1 commit into from
Sep 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Sming/Arch/Esp32/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Sming currently supports IDF versions 4.3, 4.4 and 5.0.

The default installed IDF version is 4.4. This can be changed as follows::

INSTALL_IDF_VER=5.0 $SMING_HOME/../Tools/install.sh
INSTALL_IDF_VER=5.0 $SMING_HOME/../Tools/install.sh esp32

The installation script creates a soft-link in ``/opt/esp-idf`` pointing to the last version installed.
Use the `IDF_PATH` environment variable or change the soft-link to select which one to use.
Expand All @@ -120,8 +120,8 @@ After switching versions, run `make clean components-clean` before re-compiling.
Currently, switching from version 4.x to 5.0 or vice-versa requires an additional step
as they use different versions of the 'pyparsing' Python library.

If moving from IDF 4.x to 5.0: `python -m pip install --upgrade pyparsing`
Moving from IDF 5.0 to 4.x: `python -m pip install pyparsing\<2.4`
If moving from IDF 4.x to 5.0: ``python -m pip install --upgrade pyparsing``
Moving from IDF 5.0 to 4.x: ``python -m pip install 'pyparsing<2.4'``


Components
Expand Down
Loading