Skip to content

Commit 55e5f8e

Browse files
committed
Merge branch 'bugfix/docs_small_updates' into 'master'
Bugfix/docs small updates See merge request idf/esp-idf!1847
2 parents a58a2b6 + 36bbfbb commit 55e5f8e

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed
5.46 KB
Loading

docs/en/get-started/eclipse-setup.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Project Properties
5050

5151
* Click "Add..." again, and enter name ``IDF_PATH``. The value should be the full path where ESP-IDF is installed.
5252

53-
* Edit the ``PATH`` environment variable. Keep the current value, and append the path to the Xtensa toolchain that will installed as part of IDF setup (``something/xtensa-esp32-elf/bin``) if this is not already listed on the PATH.
53+
* Edit the ``PATH`` environment variable. Keep the current value, and append the path to the Xtensa toolchain installed as part of IDF setup, if this is not already listed on the PATH. A typical path to the toolchain looks like ``/home/user-name/esp/xtensa-esp32-elf/bin``. Note that you need to add a colon ``:`` before the appended path.
5454

5555
* On macOS, add a ``PYTHONPATH`` environment variable and set it to ``/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages``. This is so that the system Python, which has pyserial installed as part of the setup steps, overrides any built-in Eclipse Python.
5656

docs/en/get-started/windows-setup.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ Unzip the zip file to ``C:\`` (or some other location, but this guide assumes ``
2121
Check it Out
2222
============
2323

24-
Open a MSYS2 MINGW32 terminal window by running ``C:\msys32\mingw32.exe``. The environment in this window is a bash shell.
24+
Open a MSYS2 MINGW32 terminal window by running ``C:\msys32\mingw32.exe``. The environment in this window is a bash shell. Create a directory named ``esp`` that is a default location to develop ESP32 applications. To do so, run the following shell command::
25+
26+
mkdir -p ~/esp
27+
28+
By typing ``cd ~/esp`` you can then move to the newly created directory. If there are no error messages you are done with this step.
2529

2630
.. figure:: ../../_static/msys2-terminal-window.png
2731
:align: center

0 commit comments

Comments
 (0)