Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CTU CAN FD IP Core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
16
Issues
16
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
canbus
CTU CAN FD IP Core
Commits
5af7a75e
Commit
5af7a75e
authored
Aug 31, 2018
by
Ille, Ondrej, Ing.
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added transition from Ready to Aborted as source of TXT HW CMD
interrupt.
parent
cdb3701d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
src/Buffers_Message_Handling/txtBuffer.vhd
src/Buffers_Message_Handling/txtBuffer.vhd
+4
-1
test/unit/Int_Manager/Int_Manager_tb.vhd
test/unit/Int_Manager/Int_Manager_tb.vhd
+1
-1
No files found.
src/Buffers_Message_Handling/txtBuffer.vhd
View file @
5af7a75e
...
...
@@ -185,7 +185,10 @@ begin
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
));
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
;
...
...
test/unit/Int_Manager/Int_Manager_tb.vhd
View file @
5af7a75e
...
...
@@ -196,7 +196,7 @@ architecture int_man_unit_test of CAN_test is
-- TXT HW Command
signal
txt_hw_cmd_int
:
inout
std_logic_vector
(
TXT_BUFFER_COUNT
-
1
downto
0
)
;
downto
0
)
)
is
variable
tmp
:
std_logic
;
begin
...
...
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