Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tdc-core
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
hdl-core-lib
tdc-core
Commits
6910c04a
Commit
6910c04a
authored
13 years ago
by
Sebastien Bourdeauducq
Browse files
Options
Downloads
Patches
Plain Diff
demo: enable terminations on FMC DIO
parent
9eb478ac
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
demo/boards/spec/rtl/system.v
+3
-0
3 additions, 0 deletions
demo/boards/spec/rtl/system.v
demo/boards/spec/synthesis/common.ucf
+2
-0
2 additions, 0 deletions
demo/boards/spec/synthesis/common.ucf
with
5 additions
and
0 deletions
demo/boards/spec/rtl/system.v
+
3
−
0
View file @
6910c04a
...
...
@@ -37,6 +37,7 @@ module system(
output
test_clk_p
,
output
test_clk_n
,
output
[
1
:
0
]
tdc_signal_oe_n
,
output
[
1
:
0
]
tdc_signal_term_en
,
input
[
1
:
0
]
tdc_signal_p
,
input
[
1
:
0
]
tdc_signal_n
);
...
...
@@ -521,12 +522,14 @@ OBUFDS obuf_test_clk(
);
assign
tdc_signal_oe_n
[
0
]
=
1'b1
;
assign
tdc_signal_term_en
[
0
]
=
1'b1
;
IBUFDS
ibuf_tdc_signal0
(
.
I
(
tdc_signal_p
[
0
]),
.
IB
(
tdc_signal_n
[
0
]),
.
O
(
tdc_signal
[
0
])
);
assign
tdc_signal_oe_n
[
1
]
=
1'b1
;
assign
tdc_signal_term_en
[
1
]
=
1'b1
;
IBUFDS
ibuf_tdc_signal1
(
.
I
(
tdc_signal_p
[
1
]),
.
IB
(
tdc_signal_n
[
1
]),
...
...
This diff is collapsed.
Click to expand it.
demo/boards/spec/synthesis/common.ucf
+
2
−
0
View file @
6910c04a
...
...
@@ -27,10 +27,12 @@ NET "test_clk_p" LOC = W17 | IOSTANDARD = "LVDS_25";
NET "test_clk_n" LOC = Y18 | IOSTANDARD = "LVDS_25";
NET "tdc_signal_oe_n[0]" LOC = Y14 | IOSTANDARD = "LVCMOS25";
NET "tdc_signal_term_en[0]" LOC = AB5 | IOSTANDARD = "LVCMOS25";
NET "tdc_signal_p[0]" LOC = R11 | IOSTANDARD = "LVDS_25";
NET "tdc_signal_n[0]" LOC = T11 | IOSTANDARD = "LVDS_25";
NET "tdc_signal_oe_n[1]" LOC = W11 | IOSTANDARD = "LVCMOS25";
NET "tdc_signal_term_en[1]" LOC = AB6 | IOSTANDARD = "LVCMOS25";
NET "tdc_signal_p[1]" LOC = W12 | IOSTANDARD = "LVDS_25";
NET "tdc_signal_n[1]" LOC = Y12 | IOSTANDARD = "LVDS_25";
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment