Skip to content

Commit

Permalink
docs/user_guide/porting_project: Update code instructions
Browse files Browse the repository at this point in the history
Signed-off-by: Iulia Moldovan <[email protected]>
  • Loading branch information
IuliaCMoldovan committed Sep 3, 2024
1 parent 152d170 commit f89a2da
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/user_guide/porting_project.rst
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@ the **adi_project_create** process:

.. code:: tcl
if [regexp "_zcu102$" $project_name] {
set p_device "xczu9eg-ffvb1156-1-i-es1"
set p_board "xilinx.com:zcu102:part0:1.2"
set sys_zynq 2
if [regexp "_zcu102" $project_name] {
set device "xczu9eg-ffvb1156-2-e"
set board [lindex [lsearch -all -inline [get_board_parts] *zcu102*] end]
set sys_zynq 2
}
.. tip::
Expand All @@ -128,10 +128,10 @@ the **adi_project_create** process:

The **sys_zynq** constant variable should be set in the following way:

- 0 - 7 Series FPGA (e.g. Kintex7, Virtex7)
- 1 - Zynq7000 SoC
- 2 - Zynq UltraScale+ SoC
- 3 - Versal
* 0 - 7 Series FPGA (e.g. Kintex7, Virtex7)
* 1 - Zynq7000 SoC
* 2 - Zynq UltraScale+ SoC
* 3 - Versal

Example with an Intel board
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down

0 comments on commit f89a2da

Please sign in to comment.