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
16e1110c
Commit
16e1110c
authored
9 years ago
by
Martine Lenders
Browse files
Options
Downloads
Patches
Plain Diff
auto_init: adapt autoinitialization of at86rf2xx
parent
5bfc9e43
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
sys/auto_init/netif/auto_init_at86rf2xx.c
+20
-13
20 additions, 13 deletions
sys/auto_init/netif/auto_init_at86rf2xx.c
with
20 additions
and
13 deletions
sys/auto_init/netif/auto_init_at86rf2xx.c
+
20
−
13
View file @
16e1110c
...
...
@@ -20,7 +20,8 @@
#ifdef MODULE_AT86RF2XX
#include
"board.h"
#include
"net/gnrc/nomac.h"
#include
"net/gnrc/netdev2.h"
#include
"net/gnrc/netdev2/ieee802154.h"
#include
"net/gnrc.h"
#include
"at86rf2xx.h"
...
...
@@ -36,32 +37,38 @@
#define AT86RF2XX_MAC_STACKSIZE (THREAD_STACKSIZE_DEFAULT)
#define AT86RF2XX_MAC_PRIO (THREAD_PRIORITY_MAIN - 4)
#define AT86RF2XX_NUM (sizeof(at86rf2xx_params)
/
sizeof(at86rf2xx_params[0]))
#define AT86RF2XX_NUM (sizeof(at86rf2xx_params)
/
sizeof(at86rf2xx_params[0]))
static
at86rf2xx_t
at86rf2xx_devs
[
AT86RF2XX_NUM
];
static
char
_nomac_stacks
[
AT86RF2XX_MAC_STACKSIZE
][
AT86RF2XX_NUM
];
static
gnrc_netdev2_t
gnrc_adpt
[
AT86RF2XX_NUM
];
static
char
_at86rf2xx_stacks
[
AT86RF2XX_MAC_STACKSIZE
][
AT86RF2XX_NUM
];
void
auto_init_at86rf2xx
(
void
)
{
for
(
unsigned
i
=
0
;
i
<
AT86RF2XX_NUM
;
i
++
)
{
const
at86rf2xx_params_t
*
p
=
&
at86rf2xx_params
[
i
];
int
res
;
DEBUG
(
"Initializing AT86RF2xx radio at SPI_%i
\n
"
,
p
->
spi
);
int
res
=
at86rf2xx_init
(
&
at86rf2xx_devs
[
i
],
p
->
spi
,
p
->
spi_speed
,
p
->
cs_pin
,
p
->
int_pin
,
p
->
sleep_pin
,
p
->
reset_pin
);
at86rf2xx_setup
(
&
at86rf2xx_devs
[
i
],
p
->
spi
,
p
->
spi_speed
,
p
->
cs_pin
,
p
->
int_pin
,
p
->
sleep_pin
,
p
->
reset_pin
);
res
=
gnrc_netdev2_ieee802154_init
(
&
gnrc_adpt
[
i
],
(
netdev2_ieee802154_t
*
)
&
at86rf2xx_devs
[
i
]);
if
(
res
<
0
)
{
DEBUG
(
"Error initializing AT86RF2xx radio device!
\n
"
);
}
else
{
gnrc_nomac_init
(
_nomac_stacks
[
i
],
AT86RF2XX_MAC_STACKSIZE
,
AT86RF2XX_MAC_PRIO
,
"at86rfxx"
,
(
gnrc_netdev_t
*
)
&
at86rf2xx_devs
[
i
]);
gnrc_netdev2_init
(
_at86rf2xx_stacks
[
i
],
AT86RF2XX_MAC_STACKSIZE
,
AT86RF2XX_MAC_PRIO
,
"at86rf2xx"
,
&
gnrc_adpt
[
i
]);
}
}
}
...
...
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