Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
cm-projects
RIOT
Commits
b313c02c
Commit
b313c02c
authored
7 years ago
by
dnahm
Browse files
Options
Downloads
Patches
Plain Diff
Adapted to comments II
parent
fe15574c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cpu/atmega_common/periph/i2c.c
+5
-5
5 additions, 5 deletions
cpu/atmega_common/periph/i2c.c
with
5 additions
and
5 deletions
cpu/atmega_common/periph/i2c.c
+
5
−
5
View file @
b313c02c
...
@@ -67,7 +67,7 @@ int i2c_init_master(i2c_t dev, i2c_speed_t speed)
...
@@ -67,7 +67,7 @@ int i2c_init_master(i2c_t dev, i2c_speed_t speed)
if
(
CLOCK_CORECLOCK
>
20000000U
||
CLOCK_CORECLOCK
<
1000000U
)
{
if
(
CLOCK_CORECLOCK
>
20000000U
||
CLOCK_CORECLOCK
<
1000000U
)
{
return
-
2
;
return
-
2
;
}
}
twibrr
=
((
CLOCK_CORECLOCK
/
10000
)
-
16
)
/
(
2
*
4
);
/
/
CLK Prescaler 4
twibrr
=
((
CLOCK_CORECLOCK
/
10000
)
-
16
)
/
(
2
*
4
);
/
*
CLK Prescaler 4
*/
twipb
=
1
;
twipb
=
1
;
break
;
break
;
...
@@ -75,28 +75,28 @@ int i2c_init_master(i2c_t dev, i2c_speed_t speed)
...
@@ -75,28 +75,28 @@ int i2c_init_master(i2c_t dev, i2c_speed_t speed)
if
(
CLOCK_CORECLOCK
>
50000000U
||
CLOCK_CORECLOCK
<
2000000U
)
{
if
(
CLOCK_CORECLOCK
>
50000000U
||
CLOCK_CORECLOCK
<
2000000U
)
{
return
-
2
;
return
-
2
;
}
}
twibrr
=
((
CLOCK_CORECLOCK
/
100000
)
-
16
)
/
2
;
twibrr
=
((
CLOCK_CORECLOCK
/
100000
)
-
16
)
/
2
;
break
;
break
;
case
I2C_SPEED_FAST
:
case
I2C_SPEED_FAST
:
if
(
CLOCK_CORECLOCK
<
7500000U
)
{
if
(
CLOCK_CORECLOCK
<
7500000U
)
{
return
-
2
;
return
-
2
;
}
}
twibrr
=
((
CLOCK_CORECLOCK
/
400000
)
-
16
)
/
2
;
twibrr
=
((
CLOCK_CORECLOCK
/
400000
)
-
16
)
/
2
;
break
;
break
;
case
I2C_SPEED_FAST_PLUS
:
case
I2C_SPEED_FAST_PLUS
:
if
(
CLOCK_CORECLOCK
<
18000000U
)
{
if
(
CLOCK_CORECLOCK
<
18000000U
)
{
return
-
2
;
return
-
2
;
}
}
twibrr
=
((
CLOCK_CORECLOCK
/
1000000
)
-
16
)
/
2
;
twibrr
=
((
CLOCK_CORECLOCK
/
1000000
)
-
16
)
/
2
;
break
;
break
;
case
I2C_SPEED_HIGH
:
case
I2C_SPEED_HIGH
:
if
(
CLOCK_CORECLOCK
<
62000000U
)
{
if
(
CLOCK_CORECLOCK
<
62000000U
)
{
return
-
2
;
return
-
2
;
}
}
twibrr
=
((
CLOCK_CORECLOCK
/
3400000
)
-
16
)
/
2
;
twibrr
=
((
CLOCK_CORECLOCK
/
3400000
)
-
16
)
/
2
;
break
;
break
;
default:
default:
...
...
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