-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the Terasic DE5-Net Stratix V board.
- Loading branch information
Showing
3 changed files
with
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Main system clock (50 Mhz) | ||
create_clock -name "clk" -period 20.000ns [get_ports {clk}] | ||
|
||
# Automatically constrain PLL and other generated clocks | ||
derive_pll_clocks -create_base_clocks | ||
|
||
# Automatically calculate clock uncertainty to jitter and other effects. | ||
derive_clock_uncertainty |
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,13 @@ | ||
# | ||
# Clock / Reset | ||
# | ||
set_location_assignment PIN_AW35 -to clk | ||
set_instance_assignment -name IO_STANDARD "2.5 V" -to clk | ||
|
||
# | ||
# GPIO0 - board name LED_BRACKET[0] | ||
# | ||
set_location_assignment PIN_AH15 -to q | ||
set_instance_assignment -name IO_STANDARD "2.5 V" -to q | ||
set_instance_assignment -name CURRENT_STRENGTH_NEW 12MA -to q | ||
set_instance_assignment -name SLEW_RATE 1 -to q |