Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Rimfaxe
vme_core
Commits
9a361e9a
Commit
9a361e9a
authored
Aug 26, 2020
by
Michael Munch
Browse files
Latch err code on data strobe
parent
412f22b1
Pipeline
#26376
failed with stage
in 31 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
src/vme_cli_arb.vhd
View file @
9a361e9a
...
...
@@ -157,13 +157,6 @@ begin
cnt
<=
cnt
+
1
;
if
(
vc_busy
=
'0'
)
then
-- Latch error code when busy pulled
if
(
active_1
)
then
p1_int_err_code_latched
<=
vc_int_err_code
;
end
if
;
if
(
active_2
)
then
p2_int_err_code_latched
<=
vc_int_err_code
;
end
if
;
active_1
<=
false
;
active_2
<=
false
;
end
if
;
...
...
@@ -183,9 +176,11 @@ begin
-- vc_int_data_strobe will not come on the first cycle.
if
(
active_1
and
vc_int_data_strobe
=
'1'
)
then
p1_int_data_read_latched
<=
vc_int_data_read
;
p1_int_err_code_latched
<=
vc_int_err_code
;
end
if
;
if
(
active_2
and
vc_int_data_strobe
=
'1'
)
then
p2_int_data_read_latched
<=
vc_int_data_read
;
p2_int_err_code_latched
<=
vc_int_err_code
;
end
if
;
end
if
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment