adi_project.tcl: Add MicroZed support

Handle the projects for the MicroZed and set up the FPGA part accordingly.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
main
Lars-Peter Clausen 2016-01-13 20:07:38 +01:00
parent 426490c394
commit 51d20b1a61
1 changed files with 5 additions and 0 deletions

View File

@ -55,6 +55,11 @@ proc adi_project_create {project_name {mode 0}} {
set p_board "em.avnet.com:zed:part0:1.3" set p_board "em.avnet.com:zed:part0:1.3"
set sys_zynq 1 set sys_zynq 1
} }
if [regexp "_microzed$" $project_name] {
set p_device "xc7z010clg400-1"
set p_board "not-applicable"
set sys_zynq 1
}
if [regexp "_zc702$" $project_name] { if [regexp "_zc702$" $project_name] {
set p_device "xc7z020clg484-1" set p_device "xc7z020clg484-1"
set p_board "xilinx.com:zc702:part0:1.2" set p_board "xilinx.com:zc702:part0:1.2"