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
41f0864b
Commit
41f0864b
authored
7 years ago
by
Hauke Petersen
Browse files
Options
Downloads
Patches
Plain Diff
saul_reg: make ptr to device descriptor non const
parent
6404bb75
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sys/auto_init/saul/auto_init_gpio.c
+1
-1
1 addition, 1 deletion
sys/auto_init/saul/auto_init_gpio.c
sys/include/saul_reg.h
+1
-1
1 addition, 1 deletion
sys/include/saul_reg.h
with
2 additions
and
2 deletions
sys/auto_init/saul/auto_init_gpio.c
+
1
−
1
View file @
41f0864b
...
@@ -55,7 +55,7 @@ void auto_init_gpio(void)
...
@@ -55,7 +55,7 @@ void auto_init_gpio(void)
LOG_DEBUG
(
"[auto_init_saul] initializing GPIO #%u
\n
"
,
i
);
LOG_DEBUG
(
"[auto_init_saul] initializing GPIO #%u
\n
"
,
i
);
saul_reg_entries
[
i
].
dev
=
p
;
saul_reg_entries
[
i
].
dev
=
(
void
*
)
p
;
saul_reg_entries
[
i
].
name
=
p
->
name
;
saul_reg_entries
[
i
].
name
=
p
->
name
;
if
((
p
->
mode
==
GPIO_IN
)
||
(
p
->
mode
==
GPIO_IN_PD
)
||
if
((
p
->
mode
==
GPIO_IN
)
||
(
p
->
mode
==
GPIO_IN_PD
)
||
(
p
->
mode
==
GPIO_IN_PU
))
{
(
p
->
mode
==
GPIO_IN_PU
))
{
...
...
This diff is collapsed.
Click to expand it.
sys/include/saul_reg.h
+
1
−
1
View file @
41f0864b
...
@@ -38,7 +38,7 @@ extern "C" {
...
@@ -38,7 +38,7 @@ extern "C" {
*/
*/
typedef
struct
saul_reg
{
typedef
struct
saul_reg
{
struct
saul_reg
*
next
;
/**< pointer to the next device */
struct
saul_reg
*
next
;
/**< pointer to the next device */
const
void
*
dev
;
/**< pointer to the device descriptor */
void
*
dev
;
/**< pointer to the device descriptor */
const
char
*
name
;
/**< string identifier for the device */
const
char
*
name
;
/**< string identifier for the device */
saul_driver_t
const
*
driver
;
/**< the devices read callback */
saul_driver_t
const
*
driver
;
/**< the devices read callback */
}
saul_reg_t
;
}
saul_reg_t
;
...
...
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