Isn't there a constraints file available for the I/O Carrier card with MicroZed?
I just found this:
Z7010 or Z7020 MicroZed with MBCC-BRK-PCB-A_v2.xdc
but this is for breakout board.
Isn't there a constraints file available for the I/O Carrier card with MicroZed?
I just found this:
Z7010 or Z7020 MicroZed with MBCC-BRK-PCB-A_v2.xdc
but this is for breakout board.
There is a master constraints file for the MicroZed IO Carrier card on the MicroZed IO Carrier Card Documents page:
http://microzed.org/support/documentation/1522
-Gary
Thanks. The strange is, that I get almost 100 warnings when using this constraints. Mainly:
[Common 17-55] 'set_property' expects at least one object. This are lines like:
set_property PACKAGE_PIN U14 [get_ports {LED0}]; # "U14.JX1_LVDS_10_P.JX1.41.LED0"
Is this due to missing lines like:
set_property IOSTANDARD LVCMOS18 [get_ports {LED0}] ?
If so - why this is not already included?
(Sorry for this maybe stupid beginner question)
The Master Contraints file has a line for each available signal. To generate a constraints file for your design you will need to either comment out or remove any lines related to pins/signals that you are not using. In other words, if your design only used two external signals on pins U14 and U15, you would need to comment out or remove all of the "set_property PACKAGE_PIN.." lines EXCEPT for the two below:
Hi,
This is a newbie question, but if I have a block design that creates an axi-gpio block, I get an output port that's 31 bits wide. How does one actually assign that to the 8 individual signals ?
Do you create a module that takes the 31-bit port as an output and 8 1-bit ports (LEDn) as inputs and do a set of assign statements ? Or is there a better way ?
Cheers
Simon