1
0
mirror of https://github.com/olofk/serv.git synced 2026-02-04 23:14:36 +00:00

Add support for EBAZ4205 'Development' Board

References:

- https://github.com/fusesoc/blinky/pull/68/files (EBAZ4205 blinky)
- https://github.com/fusesoc/blinky#ebaz4205-development-board
- Existing 'arty_a7_35t' example

This PR also cleans up a bunch of whitespace issues (no functional
change).
This commit is contained in:
Dhiru Kholia
2021-08-12 22:04:09 +05:30
committed by Olof Kindgren
parent b845507e32
commit dbe5236b4c
5 changed files with 111 additions and 5 deletions

10
data/ebaz4205.xdc Normal file
View File

@@ -0,0 +1,10 @@
## 33.333 MHz Clock signal
set_property -dict { PACKAGE_PIN N18 IOSTANDARD LVCMOS33 } [get_ports i_clk];
create_clock -add -name sys_clk_pin -period 30.00 -waveform {0 5} [get_ports i_clk];
## LED(s)
# set_property -dict { PACKAGE_PIN W13 IOSTANDARD LVCMOS33 } [get_ports { q_green }];
# set_property -dict { PACKAGE_PIN W14 IOSTANDARD LVCMOS33 } [get_ports { q }];
## UART on DATA1_8 pin
set_property -dict { PACKAGE_PIN B20 IOSTANDARD LVCMOS33 } [get_ports q];