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
27c2ee50
Commit
27c2ee50
authored
7 years ago
by
Sebastian Meiling
Browse files
Options
Downloads
Patches
Plain Diff
cpu, atmega_common: fix returns and error codes in periph/i2c
parent
ba6f2a4c
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
cpu/atmega_common/periph/i2c.c
+26
-7
26 additions, 7 deletions
cpu/atmega_common/periph/i2c.c
with
26 additions
and
7 deletions
cpu/atmega_common/periph/i2c.c
+
26
−
7
View file @
27c2ee50
...
...
@@ -123,14 +123,18 @@ int i2c_init_master(i2c_t dev, i2c_speed_t speed)
int
i2c_acquire
(
i2c_t
dev
)
{
assert
(
dev
<
I2C_NUMOF
);
if
(
!
(
dev
<
I2C_NUMOF
))
{
return
-
1
;
}
mutex_lock
(
&
lock
);
return
0
;
}
int
i2c_release
(
i2c_t
dev
)
{
assert
(
dev
<
I2C_NUMOF
);
if
(
!
(
dev
<
I2C_NUMOF
))
{
return
-
1
;
}
mutex_unlock
(
&
lock
);
return
0
;
}
...
...
@@ -142,10 +146,13 @@ int i2c_read_byte(i2c_t dev, uint8_t address, void *data)
int
i2c_read_bytes
(
i2c_t
dev
,
uint8_t
address
,
void
*
data
,
int
length
)
{
uint8_t
*
my_data
=
data
;
assert
(
length
>
0
)
;
assert
((
dev
<
I2C_NUMOF
)
&&
(
length
>
0
));
if
(
!
(
dev
<
I2C_NUMOF
))
{
return
-
1
;
}
uint8_t
*
my_data
=
data
;
/* send start condition and slave address */
if
(
_start
(
address
,
I2C_FLAG_READ
)
!=
0
)
{
return
0
;
...
...
@@ -180,7 +187,11 @@ int i2c_read_reg(i2c_t dev, uint8_t address, uint8_t reg, void *data)
int
i2c_read_regs
(
i2c_t
dev
,
uint8_t
address
,
uint8_t
reg
,
void
*
data
,
int
length
)
{
assert
((
dev
<
I2C_NUMOF
)
&&
(
length
>
0
));
assert
(
length
>
0
);
if
(
!
(
dev
<
I2C_NUMOF
))
{
return
-
1
;
}
/* start transmission and send slave address */
if
(
_start
(
address
,
I2C_FLAG_WRITE
)
!=
0
)
{
...
...
@@ -206,7 +217,11 @@ int i2c_write_bytes(i2c_t dev, uint8_t address, const void *data, int length)
{
int
bytes
=
0
;
assert
((
dev
<
I2C_NUMOF
)
&&
(
length
>
0
));
assert
(
length
>
0
);
if
(
!
(
dev
<
I2C_NUMOF
))
{
return
-
1
;
}
/* start transmission and send slave address */
if
(
_start
(
address
,
I2C_FLAG_WRITE
)
!=
0
)
{
...
...
@@ -231,7 +246,11 @@ int i2c_write_regs(i2c_t dev, uint8_t address, uint8_t reg, const void *data, in
{
int
bytes
=
0
;
assert
((
dev
<
I2C_NUMOF
)
&&
(
length
>
0
));
assert
(
length
>
0
);
if
(
!
(
dev
<
I2C_NUMOF
))
{
return
-
1
;
}
/* start transmission and send slave address */
if
(
_start
(
address
,
I2C_FLAG_WRITE
)
!=
0
)
{
...
...
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