Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
STITCH
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
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
Show more breadcrumbs
Pascal Engeler
STITCH
Commits
bf7fb22b
Commit
bf7fb22b
authored
4 months ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
Implemented fix for locking trace readback component (issue
#13
)
parent
89ca39f3
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
stitch_project/stitch/ReadbackTraceControl.vhd
+3
-2
3 additions, 2 deletions
stitch_project/stitch/ReadbackTraceControl.vhd
stitch_project/stitch/Stitch.vhd
+4
-2
4 additions, 2 deletions
stitch_project/stitch/Stitch.vhd
with
7 additions
and
4 deletions
stitch_project/stitch/ReadbackTraceControl.vhd
+
3
−
2
View file @
bf7fb22b
...
...
@@ -10,7 +10,8 @@ entity ReadbackTraceControl is
serial_trans_idle
:
in
STD_LOGIC
;
addr_rd
:
out
STD_LOGIC_VECTOR
(
14
downto
0
);
-- address read
idle
:
out
STD_LOGIC
;
send
:
out
STD_LOGIC
);
send
:
out
STD_LOGIC
;
sel
:
in
STD_LOGIC
);
end
ReadbackTraceControl
;
architecture
Behavioral
of
ReadbackTraceControl
is
...
...
@@ -42,7 +43,7 @@ begin
if
rising_edge
(
clk100
)
then
case
current_state
is
when
IDLE_S
=>
if
start_old_sig
=
'0'
and
start
=
'1'
then
if
start_old_sig
=
'0'
and
start
=
'1'
and
sel
=
'1'
then
current_state
<=
APP_ADDR
;
idle_sig
<=
'0'
;
else
...
...
This diff is collapsed.
Click to expand it.
stitch_project/stitch/Stitch.vhd
+
4
−
2
View file @
bf7fb22b
...
...
@@ -307,7 +307,8 @@ Port (
serial_trans_idle
:
in
STD_LOGIC
;
addr_rd
:
out
STD_LOGIC_VECTOR
(
14
downto
0
);
idle
:
out
STD_LOGIC
;
send
:
out
STD_LOGIC
send
:
out
STD_LOGIC
;
sel
:
in
STD_LOGIC
);
END
COMPONENT
;
...
...
@@ -745,7 +746,8 @@ iReadbackTraceControl : ReadbackTraceControl port map(
serial_trans_idle
=>
iSerialTransmitter_IDLE
,
-- in STD_LOGIC
addr_rd
=>
iReadbackTraceControl_addr_rd
,
-- out STD_LOGIC_VECTOR (14 downto 0) TODO
idle
=>
iReadbackTraceControl_idle
,
-- out STD_LOGIC
send
=>
iReadbackTraceControl_send
-- out STD_LOGIC
send
=>
iReadbackTraceControl_send
,
-- out STD_LOGIC
sel
=>
iCommandDecoder_sel
);
iMultiplexer
:
Multiplexer
port
map
(
...
...
This diff is collapsed.
Click to expand it.
Pascal Engeler
@engelerp
mentioned in issue
#13 (closed)
·
4 months ago
mentioned in issue
#13 (closed)
mentioned in issue #13
Toggle commit list
Preview
0%
Loading
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