Merge pull request #208 from antmicro/fix-extra-quote
projf: remove unnecessary extra quote
This commit is contained in:
commit
02d2a3021e
|
@ -88,7 +88,7 @@ if [ "$fpga_family" = "xc7" ]; then
|
||||||
|
|
||||||
# Project F examples
|
# Project F examples
|
||||||
"hello-a")
|
"hello-a")
|
||||||
snippets="${activate_env} projf-makefiles/hello/hello-arty/A/README.rst:hello-arty-A"
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/A/README.rst:hello-arty-a"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "ERROR: Unknown example name: $example" >&2
|
echo "ERROR: Unknown example name: $example" >&2
|
||||||
|
|
|
@ -41,6 +41,8 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Setup repository
|
- name: Setup repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
- name: Install utils
|
- name: Install utils
|
||||||
if: ${{matrix.os == 'ubuntu' || matrix.os == 'debian'}}
|
if: ${{matrix.os == 'ubuntu' || matrix.os == 'debian'}}
|
||||||
|
|
|
@ -4,13 +4,13 @@ Part 1 Design A
|
||||||
This design allows you to turn the first led on the arty board on and off by toggling switch 0.
|
This design allows you to turn the first led on the arty board on and off by toggling switch 0.
|
||||||
To build this design run the following command in the main symbiflow directory:
|
To build this design run the following command in the main symbiflow directory:
|
||||||
|
|
||||||
.. code:: bash
|
.. code-block:: bash
|
||||||
:name: hello-arty-A
|
:name: hello-arty-a
|
||||||
|
|
||||||
TARGET="arty_35" make -C projf-makefiles/hello/hello-arty/A"
|
TARGET="arty_35" make -C projf-makefiles/hello/hello-arty/A
|
||||||
|
|
||||||
You can then download the bitstream by running:
|
You can then download the bitstream by running:
|
||||||
|
|
||||||
.. code:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
TARGET="arty_35" make download -C projf-makefiles/hello/hello-arty/A"
|
TARGET="arty_35" make download -C projf-makefiles/hello/hello-arty/A
|
||||||
|
|
Loading…
Reference in New Issue