arradio: renamed fmcomms2 c5soc to arradio
parent
dc7064ab95
commit
25e56a4d03
|
@ -106,7 +106,7 @@ M_FLIST += *.pin
|
|||
|
||||
|
||||
.PHONY: all clean clean-all
|
||||
all: fmcomms2_c5soc.sof
|
||||
all: arradio_c5soc.sof
|
||||
|
||||
|
||||
|
||||
|
@ -117,9 +117,9 @@ clean-all:
|
|||
rm -rf $(M_FLIST)
|
||||
|
||||
|
||||
fmcomms2_c5soc.sof: $(M_DEPS)
|
||||
arradio_c5soc.sof: $(M_DEPS)
|
||||
rm -rf $(M_FLIST)
|
||||
$(M_ALTERA) system_project.tcl >> fmcomms2_c5soc_quartus.log 2>&1
|
||||
$(M_ALTERA) system_project.tcl >> arradio_c5soc_quartus.log 2>&1
|
||||
|
||||
####################################################################################
|
||||
####################################################################################
|
|
@ -240,7 +240,7 @@
|
|||
<parameter name="hdlLanguage" value="VERILOG" />
|
||||
<parameter name="hideFromIPCatalog" value="false" />
|
||||
<parameter name="maxAdditionalLatency" value="2" />
|
||||
<parameter name="projectName" value="fmcomms2_c5soc.qpf" />
|
||||
<parameter name="projectName" value="arradio_c5soc.qpf" />
|
||||
<parameter name="sopcBorderPoints" value="false" />
|
||||
<parameter name="systemHash" value="0" />
|
||||
<parameter name="testBenchDutName" value="" />
|
2
projects/fmcomms2/c5soc/system_project.tcl → projects/arradio/c5soc/system_project.tcl
Executable file → Normal file
2
projects/fmcomms2/c5soc/system_project.tcl → projects/arradio/c5soc/system_project.tcl
Executable file → Normal file
|
@ -2,7 +2,7 @@
|
|||
load_package flow
|
||||
|
||||
source ../../scripts/adi_env.tcl
|
||||
project_new fmcomms2_c5soc -overwrite
|
||||
project_new arradio_c5soc -overwrite
|
||||
|
||||
source $ad_hdl_dir/projects/common/c5soc/c5soc_system_assign.tcl
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
|
||||
set worst_path [get_timing_paths -npaths 1 -setup]
|
||||
foreach_in_collection path $worst_path {
|
||||
set slack [get_path_info $path -slack]
|
||||
}
|
||||
|
||||
if {$slack > 0} {
|
||||
set worst_path [get_timing_paths -npaths 1 -hold]
|
||||
foreach_in_collection path $worst_path {
|
||||
set slack [get_path_info $path -slack]
|
||||
}
|
||||
}
|
||||
|
||||
if {$slack < 0} {
|
||||
use_this_invalid_command_to_crash
|
||||
}
|
Loading…
Reference in New Issue