Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HDL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RTSD
HDL
Commits
e1d63a1a
Commit
e1d63a1a
authored
9 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Added func_i2c_calculate_clk_cnt with bit_rate_in_kHz argument.
parent
4bfb1f42
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/io/i2c/src/vhdl/i2c_pkg.vhd
+9
-0
9 additions, 0 deletions
libraries/io/i2c/src/vhdl/i2c_pkg.vhd
with
9 additions
and
0 deletions
libraries/io/i2c/src/vhdl/i2c_pkg.vhd
+
9
−
0
View file @
e1d63a1a
...
@@ -56,6 +56,7 @@ PACKAGE i2c_pkg IS
...
@@ -56,6 +56,7 @@ PACKAGE i2c_pkg IS
CONSTANT
c_i2c_phy_sim
:
t_c_i2c_phy
:
=
(
1
,
c_i2c_comma_w_dis
);
CONSTANT
c_i2c_phy_sim
:
t_c_i2c_phy
:
=
(
1
,
c_i2c_comma_w_dis
);
-- Calculate clk_cnt from system_clock_freq_in_MHz
-- Calculate clk_cnt from system_clock_freq_in_MHz
FUNCTION
func_i2c_calculate_clk_cnt
(
system_clock_freq_in_MHz
,
bit_rate_in_kHz
:
NATURAL
)
RETURN
NATURAL
;
FUNCTION
func_i2c_calculate_clk_cnt
(
system_clock_freq_in_MHz
:
NATURAL
)
RETURN
NATURAL
;
FUNCTION
func_i2c_calculate_clk_cnt
(
system_clock_freq_in_MHz
:
NATURAL
)
RETURN
NATURAL
;
-- Calculate (clk_cnt, comma_w) from system_clock_freq_in_MHz
-- Calculate (clk_cnt, comma_w) from system_clock_freq_in_MHz
...
@@ -70,6 +71,14 @@ END i2c_pkg;
...
@@ -70,6 +71,14 @@ END i2c_pkg;
PACKAGE
BODY
i2c_pkg
IS
PACKAGE
BODY
i2c_pkg
IS
FUNCTION
func_i2c_calculate_clk_cnt
(
system_clock_freq_in_MHz
,
bit_rate_in_kHz
:
NATURAL
)
RETURN
NATURAL
IS
-- . Adapt c_i2c_clk_freq and c_i2c_bit_rate and c_i2c_clk_cnt will be set appropriately
-- . Default no comma time is needed, it appeared necessary for the uP based I2C slave in the LOFAR HBA client
CONSTANT
c_clk_cnt_factor
:
NATURAL
:
=
5
;
BEGIN
RETURN
system_clock_freq_in_MHz
*
1000
/
bit_rate_in_kHz
/
c_clk_cnt_factor
-
1
;
END
;
FUNCTION
func_i2c_calculate_clk_cnt
(
system_clock_freq_in_MHz
:
NATURAL
)
RETURN
NATURAL
IS
FUNCTION
func_i2c_calculate_clk_cnt
(
system_clock_freq_in_MHz
:
NATURAL
)
RETURN
NATURAL
IS
-- . Adapt c_i2c_clk_freq and c_i2c_bit_rate and c_i2c_clk_cnt will be set appropriately
-- . Adapt c_i2c_clk_freq and c_i2c_bit_rate and c_i2c_clk_cnt will be set appropriately
-- . Default no comma time is needed, it appeared necessary for the uP based I2C slave in the LOFAR HBA client
-- . Default no comma time is needed, it appeared necessary for the uP based I2C slave in the LOFAR HBA client
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment