Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
canbus
CTU CAN FD IP Core
Commits
2f2c3d98
Commit
2f2c3d98
authored
Dec 07, 2018
by
Ille, Ondrej, Ing.
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug-fix. Swapped low and high thresholds in memory registers to driving
bus driver.
parent
7dd652d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/Registers_Memory_Interface/canfd_registers.vhd
src/Registers_Memory_Interface/canfd_registers.vhd
+2
-2
No files found.
src/Registers_Memory_Interface/canfd_registers.vhd
View file @
2f2c3d98
...
...
@@ -823,14 +823,14 @@ begin
-- FILTER_RAN_LOW
---------------------------------------------------------------------------
drv_bus
(
DRV_FILTER_RAN_LO_TH_HIGH
downto
DRV_FILTER_RAN_LO_TH_LOW
)
<=
align_wrd_to_reg
(
control_registers_out
.
filter_ran_
high
,
BIT_RAN_LOW_VAL_H
,
BIT_RAN_LOW_VAL_L
);
control_registers_out
.
filter_ran_
low
,
BIT_RAN_LOW_VAL_H
,
BIT_RAN_LOW_VAL_L
);
---------------------------------------------------------------------------
-- FILTER_RAN_HIGH
---------------------------------------------------------------------------
drv_bus
(
DRV_FILTER_RAN_HI_TH_HIGH
downto
DRV_FILTER_RAN_HI_TH_LOW
)
<=
align_wrd_to_reg
(
control_registers_out
.
filter_ran_
low
,
BIT_RAN_HIGH_VAL_H
,
BIT_RAN_HIGH_VAL_L
);
control_registers_out
.
filter_ran_
high
,
BIT_RAN_HIGH_VAL_H
,
BIT_RAN_HIGH_VAL_L
);
--------------------------------------------------------------------------
...
...
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