typo's, added git as dependency

This commit is contained in:
Cedric de Wijs
2022-12-18 13:56:54 +01:00
parent 473d2c4092
commit 0bdef7bab1
24 changed files with 37 additions and 36 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ Automatic file type detection bypass
====================================
Default behavior is to use file extension to determine file parser.
To avoid this mecanism ``--file-type type`` must be used.
To avoid this mechanism ``--file-type type`` must be used.
FT231/FT232 bitbang mode and pins configuration
===============================================
+1 -1
View File
@@ -6,7 +6,7 @@ First steps with openFPGALoader
Install
=======
Packages are available for Linux distributionsm, Windows (MSYS2) and macOS:
Packages are available for Linux distributions, Windows (MSYS2) and macOS:
* *Arch Linux*: ``sudo pacman -S openfpgaloader``
+4 -3
View File
@@ -41,6 +41,7 @@ This application uses ``libftdi1``, so this library must be installed (and, depe
.. code-block:: bash
sudo apt install \
git \
libftdi1-2 \
libftdi1-dev \
libhidapi-hidraw0 \
@@ -92,7 +93,7 @@ If you don't want this option, use:
-DENABLE_LIBGPIOD=OFF
Additionnaly you have to install ``libgpiod``
Additionaly you have to install ``libgpiod``
To build the app:
@@ -137,7 +138,7 @@ After that you need to unplug and replug your device.
``usermod`` is used to add ``$USER`` as a member of ``plugdev`` group.
However this update is not taken into account immediately: it's required to
logout from current session and login again.
Check, by using ``id $USER``, if ``plugdev`` is mentionned after ``groups=``.
Check, by using ``id $USER``, if ``plugdev`` is mentioned after ``groups=``.
An alternate (and temporary) solution is to use ``sudo - $USER`` to have
your user seen as a member of ``plugdev`` group (works only for the current terminal).
@@ -150,7 +151,7 @@ openFPGALoader is available as a `Homebrew <https://brew.sh>`__ formula:
brew install openfpgaloader
Alternatively, if you want to build it from hand:
Alternatively, if you want to build it by hand:
.. code-block:: bash
+1 -1
View File
@@ -30,7 +30,7 @@ SVF and RBF files are supported.
quartus_cpf --option=bitstream_compression=off -c project_name.sof project_name.rbf
.. WARNING::
As mentionned in ``cyclone`` handbooks, real-time decompression is not supported by FPGA in JTAG mode.
As mentioned in ``cyclone`` handbooks, real-time decompression is not supported by FPGA in JTAG mode.
Keep in mind to disable this option.
file load:
+2 -2
View File
@@ -60,7 +60,7 @@ SPI flash
.. NOTE::
``.bit``, ``.bin``, and ``.mcs`` are supported for FLASH.
``.mcs`` must be generated through vivado with a tcl script like:
``.mcs`` must be generated through Vivado with a tcl script like:
.. code-block:: tcl
@@ -94,5 +94,5 @@ File load:
.. NOTE::
``--fpga-part`` is only required if this information is not provided at ``board.hpp`` level or if the board is not
officially supported.
device/packagee format is something like xc7a35tcsg324 (arty model).
device/package format is something like xc7a35tcsg324 (arty model).
See :ghsrc:`src/board.hpp <src/board.hpp>`, or :ghsrc:`spiOverJtag <spiOverJtag>` directory for examples.