-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ibraim
committed
Jul 16, 2020
1 parent
5d8ca77
commit de2393e
Showing
3 changed files
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule digilent-vivado-scripts
updated
from 8d2b25 to 4a30f8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
# This is an automatically generated file used by digilent_vivado_checkout.tcl to set project options | ||
proc set_digilent_project_properties {proj_name} { | ||
proc set_project_properties_post_create_project {proj_name} { | ||
set project_obj [get_projects $proj_name] | ||
set_property "part" "xc7s25csga225-1" $project_obj | ||
set_property "board_part" "digilentinc.com:cmod-s7-25:part0:1.0" $project_obj | ||
set_property "default_lib" "xil_defaultlib" $project_obj | ||
set_property "simulator_language" "Mixed" $project_obj | ||
set_property "target_language" "Verilog" $project_obj | ||
} | ||
|
||
proc set_project_properties_pre_add_repo {proj_name} { | ||
set project_obj [get_projects $proj_name] | ||
# default nothing | ||
} | ||
|
||
proc set_project_properties_post_create_runs {proj_name} { | ||
set project_obj [get_projects $proj_name] | ||
# default nothing | ||
} |