驅動器
DRIVE指定配置有I/O的輸出緩沖器的輸出緩沖器驅動強度(mA)
支持可編程輸出驅動強度的標準。
體系結構支持
所有架構。
適用對象
?端口(get_Ports)
°連接到輸出緩沖器的輸出或雙向端口
價值觀
整數值:
? 2
? 4
? 6
? 8
?12(默認值)
? 16
?24(此值不適用于UltraScale體系結構。)
Syntax
Verilog Syntax
For both inferred and instantiated output buffers, place the proper Verilog parameter
syntax before the top-level output port declaration.
(* DRIVE = "{2|4|6|8|12|16|24}" *)
Verilog Syntax Example
// Sets the drive strength on the STATUS output port to 2 mA
(* DRIVE = "2" *) output STATUS,
VHDL Syntax
For both inferred and instantiated output buffers, place the proper VHDL attribute syntax
before the top-level output port declaration.
Declare and specify the VHDL attribute as follows:
attribute DRIVE : integer;
attribute DRIVE of port_name : signal is value;
Where:
? port_name is a top-level output port.
VHDL Syntax Example
STATUS : out std_logic;
attribute DRIVE : integer;
-- Sets the drive strength on the STATUS output port to 2 mA
attribute DRIVE of STATUS : signal is 2;
XDC Syntax
set_property DRIVE value [get_ports port_name]
XDC Syntax Example
# Sets the drive strength of the port STATUS to 2 mA
set_property DRIVE 2 [get_ports STATUS]
建筑外部搜索路徑
此屬性定義Vivado Design Suite在當前文件集上的搜索路徑
查找設計所引用的EDIF文件。
提示:當Vivado Design Suite無法
找到與黑盒關聯的EDIF網表。這可以通過定義
啟迪_額外搜索路徑:
“錯誤:[Opt 31-30]黑盒模塊11正在驅動基元單元OBUF_inst的引腳I
在現有庫中找不到blackbox。“
體系結構支持
所有架構。
適用對象
?源文件集(current_Fileset)
價值觀
?<path_to_edif_file>:指定Vivado工具查找edif的搜索路徑
當前文件集正在使用的文件。
此屬性定義Vivado Design Suite在當前文件集上的搜索路徑
查找設計所引用的EDIF文件。
提示:當Vivado Design Suite無法
找到與黑盒關聯的EDIF網表。這可以通過定義
啟迪_額外搜索路徑:
“錯誤:[Opt 31-30]黑盒模塊11正在驅動基元單元OBUF_inst的引腳I
在現有庫中找不到blackbox。“
體系結構支持
所有架構。
適用對象
?源文件集(current_Fileset)
價值觀
?<path_to_edif_file>:指定Vivado工具查找edif的搜索路徑
當前文件集正在使用的文件。
Syntax
Verilog and VHDL Syntax
Not applicable
XDC Syntax
set_property EDIF_EXTRA_SEARCH_PATHS <path_to_edif_file> [current_fileset]
XDC Syntax Example
# Specifies search path for EDIF files
set_property EDIF_EXTRA_SEARCH_PATHS C:/Data/Design1/EDIF [current_fileset]