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

docs/psoc6: Minor fixes in installation docs. #116

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/psoc6/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ You can easily download them terminal with the following command:

.. code-block:: bash

curl.exe -s -L https://raw.githubusercontent.com/infineon/micropython/ports-psoc6-main/tools/psoc6/mpy-psoc6.py > mpy-psoc6.py
curl -s -L https://raw.githubusercontent.com/infineon/micropython/ports-psoc6-main/tools/psoc6/mpy-psoc6.py > mpy-psoc6.py

Make sure you have a recent version on `Python3.x <https://www.python.org/downloads/>`_ installed and the `pip <https://pip.pypa.io/en/stable/installation/>`_ package installer.
Then install the following packages:
Expand Down
21 changes: 21 additions & 0 deletions docs/psoc6/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,27 @@ In your computer terminal, type the following commands and follow the instructio

.. tabs::

.. group-tab:: Python

Download the mpy-psoc6 utility script:

.. code-block:: bash

curl -s -L https://raw.githubusercontent.com/infineon/micropython/ports-psoc6-main/tools/psoc6/mpy-psoc6.py > mpy-psoc6.py

Make sure you have a recent version on `Python3.x <https://www.python.org/downloads/>`_ installed and the `pip <https://pip.pypa.io/en/stable/installation/>`_ package installer.
Then install the following packages:

.. code-block:: bash

pip install requests

Finally run the script:

.. code-block:: bash

python mpy-psoc6.py quick-start

.. group-tab:: Linux

Download the mpy-psoc6 utility script:
Expand Down
Loading