Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
canbus
CTU CAN FD IP Core
Commits
d80f1ffb
Commit
d80f1ffb
authored
Aug 31, 2018
by
Ille, Ondrej, Ing.
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added explicit brackets
parent
5af7a75e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
src/Buffers_Message_Handling/txtBuffer.vhd
src/Buffers_Message_Handling/txtBuffer.vhd
+12
-7
No files found.
src/Buffers_Message_Handling/txtBuffer.vhd
View file @
d80f1ffb
...
...
@@ -182,13 +182,18 @@ begin
-- TXT Buffer HW Command generates interrupt upon transition to
-- Failed, Done and Aborted states!
txt_hw_cmd_int
<=
hw_cbs
and
(
txt_hw_cmd
.
failed
=
'1'
or
txt_hw_cmd
.
valid
=
'1'
or
(
txt_hw_cmd
.
unlock
=
'1'
and
buf_fsm
=
txt_ab_prog
)
or
(
txt_sw_cmd
.
set_abt
=
'1'
and
sw_cbs
=
'1'
and
buf_fsm
=
txt_ready
));
txt_hw_cmd_int
<=
hw_cbs
and
((
txt_hw_cmd
.
failed
=
'1'
)
or
(
txt_hw_cmd
.
valid
=
'1'
)
or
((
txt_hw_cmd
.
unlock
=
'1'
)
and
(
buf_fsm
=
txt_ab_prog
))
or
((
txt_sw_cmd
.
set_abt
=
'1'
)
and
(
sw_cbs
=
'1'
)
and
(
buf_fsm
=
txt_ready
)));
-- Connect internal buffer state to output
txtb_state
<=
buf_fsm
;
...
...
Write
Preview
Markdown
is supported
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