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
d22f465f
Commit
d22f465f
authored
May 19, 2018
by
Ille, Ondrej, Ing.
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor bug-fixes discovered by synthesis
parent
9ffad373
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/Buffers_Message_Handling/rxBuffer.vhd
src/Buffers_Message_Handling/rxBuffer.vhd
+4
-2
No files found.
src/Buffers_Message_Handling/rxBuffer.vhd
View file @
d22f465f
...
...
@@ -912,7 +912,7 @@ begin
-- memory, and there is not enough free space, data overrun flag will be
-- set, and no further writes will be executed.
----------------------------------------------------------------------------
dor_proc
:
process
(
res_n
,
clk_sys
)
dor_proc
:
process
(
res_n
,
clk_sys
,
drv_erase_rx
)
begin
if
(
res_n
=
ACT_RESET
or
drv_erase_rx
=
'1'
)
then
data_overrun_r
<=
'0'
;
...
...
@@ -961,7 +961,9 @@ begin
elsif
(
rising_edge
(
clk_sys
))
then
if
(
write_raw_OK
)
then
-- Write to memory either by regular pointer or by "extra timestamp"
-- pointer.
if
(
write_raw_OK
or
write_extra_ts
)
then
memory
(
memory_write_pointer
)
<=
memory_write_data
;
end
if
;
...
...
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