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
3ba99aab
Commit
3ba99aab
authored
9 years ago
by
Oleg Hahm
Browse files
Options
Downloads
Patches
Plain Diff
xbee: fix naming inconsistency
parent
8f47dcbb
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
drivers/include/xbee.h
+3
-3
3 additions, 3 deletions
drivers/include/xbee.h
sys/auto_init/netif/auto_init_xbee.c
+1
-1
1 addition, 1 deletion
sys/auto_init/netif/auto_init_xbee.c
tests/driver_xbee/xbee_params.h
+1
-1
1 addition, 1 deletion
tests/driver_xbee/xbee_params.h
with
5 additions
and
5 deletions
drivers/include/xbee.h
+
3
−
3
View file @
3ba99aab
...
...
@@ -154,7 +154,7 @@ extern const gnrc_netdev_driver_t xbee_driver;
* @param[in] baudrate baudrate to use
* @param[in] sleep_pin GPIO pin that is connected to the SLEEP pin, set to
* GPIO_UNDEF if not used
* @param[in]
status
_pin GPIO pin that is connected to the STATUS pin, set to
* @param[in]
reset
_pin
GPIO pin that is connected to the STATUS pin, set to
* GPIO_UNDEF if not used
*
* @return 0 on success
...
...
@@ -162,7 +162,7 @@ extern const gnrc_netdev_driver_t xbee_driver;
* @return -ENXIO on invalid UART or GPIO pins
*/
int
xbee_init
(
xbee_t
*
dev
,
uart_t
uart
,
uint32_t
baudrate
,
gpio_t
sleep_pin
,
gpio_t
status
_pin
);
gpio_t
sleep_pin
,
gpio_t
reset
_pin
);
/**
* @brief auto_init struct holding Xbee device initalization params
...
...
@@ -172,7 +172,7 @@ typedef struct xbee_params {
uint32_t
baudrate
;
/**< baudrate to use */
gpio_t
sleep_pin
;
/**< GPIO pin that is connected to the SLEEP pin
set to GPIO_UNDEF if not used */
gpio_t
status
_pin
;
/**< GPIO pin that is connected to the STATUS pin
gpio_t
reset
_pin
;
/**< GPIO pin that is connected to the STATUS pin
set to GPIO_UNDEF if not used */
}
xbee_params_t
;
...
...
This diff is collapsed.
Click to expand it.
sys/auto_init/netif/auto_init_xbee.c
+
1
−
1
View file @
3ba99aab
...
...
@@ -54,7 +54,7 @@ void auto_init_xbee(void)
p
->
uart
,
p
->
baudrate
,
p
->
sleep_pin
,
p
->
status
_pin
);
p
->
reset
_pin
);
if
(
res
<
0
)
{
DEBUG
(
"Error initializing XBee radio device!"
);
...
...
This diff is collapsed.
Click to expand it.
tests/driver_xbee/xbee_params.h
+
1
−
1
View file @
3ba99aab
...
...
@@ -27,7 +27,7 @@ static xbee_params_t xbee_params[] = {
{
.
uart
=
XBEE_UART
,
.
baudrate
=
9600U
,
.
sleep_pin
=
GPIO_UNDEF
,
.
status
_pin
=
GPIO_UNDEF
.
reset
_pin
=
GPIO_UNDEF
},
};
...
...
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