-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for the cmod_a7 35 board.
Signed-off-by: Bastian Löher <[email protected]>
- Loading branch information
Showing
3 changed files
with
23 additions
and
1 deletion.
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
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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Clock pin | ||
set_property PACKAGE_PIN L17 [get_ports {clk}] | ||
set_property IOSTANDARD LVCMOS33 [get_ports {clk}] | ||
|
||
# LEDs | ||
set_property PACKAGE_PIN A17 [get_ports {led[0]}] | ||
set_property PACKAGE_PIN C16 [get_ports {led[1]}] | ||
set_property PACKAGE_PIN B17 [get_ports {led[2]}] | ||
set_property PACKAGE_PIN B16 [get_ports {led[3]}] | ||
set_property IOSTANDARD LVCMOS33 [get_ports {led[0]}] | ||
set_property IOSTANDARD LVCMOS33 [get_ports {led[1]}] | ||
set_property IOSTANDARD LVCMOS33 [get_ports {led[2]}] | ||
set_property IOSTANDARD LVCMOS33 [get_ports {led[3]}] | ||
|
||
# Clock constraints (12 MHz oscillator) | ||
create_clock -period 83.33 -waveform {0 41.66} [get_ports {clk}] |