驱动器
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]