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
a63d76b3
Commit
a63d76b3
authored
6 years ago
by
Alexandre Abadie
Browse files
Options
Downloads
Patches
Plain Diff
drivers/mma8x5x: remove use of type param
Driver now accepts all variants of the driver
parent
e0e02c04
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
drivers/include/mma8x5x.h
+0
-1
0 additions, 1 deletion
drivers/include/mma8x5x.h
drivers/mma8x5x/include/mma8x5x_params.h
+1
-5
1 addition, 5 deletions
drivers/mma8x5x/include/mma8x5x_params.h
drivers/mma8x5x/mma8x5x.c
+12
-5
12 additions, 5 deletions
drivers/mma8x5x/mma8x5x.c
with
13 additions
and
11 deletions
drivers/include/mma8x5x.h
+
0
−
1
View file @
a63d76b3
...
@@ -95,7 +95,6 @@ enum {
...
@@ -95,7 +95,6 @@ enum {
typedef
struct
{
typedef
struct
{
i2c_t
i2c
;
/**< I2C bus the device is connected to */
i2c_t
i2c
;
/**< I2C bus the device is connected to */
uint8_t
addr
;
/**< I2C bus address of the device */
uint8_t
addr
;
/**< I2C bus address of the device */
uint8_t
type
;
/**< device type */
uint8_t
rate
;
/**< sampling rate to use */
uint8_t
rate
;
/**< sampling rate to use */
uint8_t
range
;
/**< scale range to use */
uint8_t
range
;
/**< scale range to use */
uint8_t
offset
[
3
];
/**< data offset in X, Y, and Z direction */
uint8_t
offset
[
3
];
/**< data offset in X, Y, and Z direction */
...
...
This diff is collapsed.
Click to expand it.
drivers/mma8x5x/include/mma8x5x_params.h
+
1
−
5
View file @
a63d76b3
...
@@ -37,9 +37,6 @@ extern "C" {
...
@@ -37,9 +37,6 @@ extern "C" {
#ifndef MMA8X5X_PARAM_ADDR
#ifndef MMA8X5X_PARAM_ADDR
#define MMA8X5X_PARAM_ADDR (MMA8X5X_I2C_ADDRESS)
#define MMA8X5X_PARAM_ADDR (MMA8X5X_I2C_ADDRESS)
#endif
#endif
#ifndef MMA8X5X_PARAM_TYPE
#define MMA8X5X_PARAM_TYPE (MMA8X5X_TYPE_MMA8652)
#endif
#ifndef MMA8X5X_PARAM_RATE
#ifndef MMA8X5X_PARAM_RATE
#define MMA8X5X_PARAM_RATE (MMA8X5X_RATE_200HZ)
#define MMA8X5X_PARAM_RATE (MMA8X5X_RATE_200HZ)
#endif
#endif
...
@@ -53,13 +50,12 @@ extern "C" {
...
@@ -53,13 +50,12 @@ extern "C" {
#ifndef MMA8X5X_PARAMS
#ifndef MMA8X5X_PARAMS
#define MMA8X5X_PARAMS { .i2c = MMA8X5X_PARAM_I2C, \
#define MMA8X5X_PARAMS { .i2c = MMA8X5X_PARAM_I2C, \
.addr = MMA8X5X_PARAM_ADDR, \
.addr = MMA8X5X_PARAM_ADDR, \
.type = MMA8X5X_PARAM_TYPE, \
.rate = MMA8X5X_PARAM_RATE, \
.rate = MMA8X5X_PARAM_RATE, \
.range = MMA8X5X_PARAM_RANGE, \
.range = MMA8X5X_PARAM_RANGE, \
.offset = MMA8X5X_PARAM_OFFSET }
.offset = MMA8X5X_PARAM_OFFSET }
#endif
#endif
#ifndef MMA8X5X_SAUL_INFO
#ifndef MMA8X5X_SAUL_INFO
#define MMA8X5X_SAUL_INFO { .name = "mma8
652
" }
#define MMA8X5X_SAUL_INFO { .name = "mma8
x5x
" }
#endif
#endif
/**@}*/
/**@}*/
...
...
This diff is collapsed.
Click to expand it.
drivers/mma8x5x/mma8x5x.c
+
12
−
5
View file @
a63d76b3
...
@@ -51,11 +51,18 @@ int mma8x5x_init(mma8x5x_t *dev, const mma8x5x_params_t *params)
...
@@ -51,11 +51,18 @@ int mma8x5x_init(mma8x5x_t *dev, const mma8x5x_params_t *params)
/* test if the target device responds */
/* test if the target device responds */
i2c_read_reg
(
BUS
,
ADDR
,
MMA8X5X_WHO_AM_I
,
&
reg
,
0
);
i2c_read_reg
(
BUS
,
ADDR
,
MMA8X5X_WHO_AM_I
,
&
reg
,
0
);
if
(
reg
!=
dev
->
params
.
type
)
{
switch
(
reg
)
{
i2c_release
(
BUS
);
case
MMA8X5X_TYPE_MMA8451
:
DEBUG
(
"[mma8x5x] init - error: invalid WHO_AM_I value [0x%02x]
\n
"
,
case
MMA8X5X_TYPE_MMA8452
:
(
int
)
reg
);
case
MMA8X5X_TYPE_MMA8453
:
return
MMA8X5X_NODEV
;
case
MMA8X5X_TYPE_MMA8652
:
case
MMA8X5X_TYPE_MMA8653
:
break
;
default:
/* invalid device type */
i2c_release
(
BUS
);
DEBUG
(
"[mma8x5x] init - error: invalid WHO_AM_I value [0x%02x]
\n
"
,
(
int
)
reg
);
return
MMA8X5X_NODEV
;
}
}
/* reset the device */
/* reset the device */
...
...
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