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
489a3cfa
Commit
489a3cfa
authored
7 years ago
by
Martine Lenders
Browse files
Options
Downloads
Patches
Plain Diff
auto_init: add netdev_tap gnrc_netif2 initialization for testing
parent
558accbe
No related branches found
Branches containing commit
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_netdev_tap.c
+20
-0
20 additions, 0 deletions
sys/auto_init/netif/auto_init_netdev_tap.c
with
20 additions
and
0 deletions
sys/auto_init/netif/auto_init_netdev_tap.c
+
20
−
0
View file @
489a3cfa
...
...
@@ -22,14 +22,24 @@
#include
"log.h"
#include
"debug.h"
#include
"netdev_tap_params.h"
#ifdef MODULE_GNRC_NETIF2
#include
"net/gnrc/netif2/ethernet.h"
#else
#include
"net/gnrc/netdev/eth.h"
#endif
#define TAP_MAC_STACKSIZE (THREAD_STACKSIZE_DEFAULT + DEBUG_EXTRA_STACKSIZE)
#ifdef MODULE_GNRC_NETIF2
#define TAP_MAC_PRIO (GNRC_NETIF2_PRIO)
#else
#define TAP_MAC_PRIO (THREAD_PRIORITY_MAIN - 3)
#endif
static
netdev_tap_t
netdev_tap
[
NETDEV_TAP_MAX
];
static
char
_netdev_eth_stack
[
NETDEV_TAP_MAX
][
TAP_MAC_STACKSIZE
+
DEBUG_EXTRA_STACKSIZE
];
#ifndef MODULE_GNRC_NETIF2
static
gnrc_netdev_t
_gnrc_netdev_tap
[
NETDEV_TAP_MAX
];
#endif
void
auto_init_netdev_tap
(
void
)
{
...
...
@@ -40,11 +50,21 @@ void auto_init_netdev_tap(void)
i
,
*
(
p
->
tap_name
));
netdev_tap_setup
(
&
netdev_tap
[
i
],
p
);
#ifdef MODULE_GNRC_NETIF2
if
(
!
gnrc_netif2_ethernet_create
(
_netdev_eth_stack
[
i
],
TAP_MAC_STACKSIZE
,
TAP_MAC_PRIO
,
"gnrc_netdev_tap"
,
&
netdev_tap
[
i
].
netdev
))
{
LOG_ERROR
(
"[auto_init_netif] error initializing TAP %s
\n
"
,
*
(
p
->
tap_name
));
}
#else
gnrc_netdev_eth_init
(
&
_gnrc_netdev_tap
[
i
],
(
netdev_t
*
)
&
netdev_tap
[
i
]);
gnrc_netdev_init
(
_netdev_eth_stack
[
i
],
TAP_MAC_STACKSIZE
,
TAP_MAC_PRIO
,
"gnrc_netdev_tap"
,
&
_gnrc_netdev_tap
[
i
]);
#endif
}
}
...
...
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