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
692e22eb
Commit
692e22eb
authored
9 years ago
by
Hauke Petersen
Browse files
Options
Downloads
Patches
Plain Diff
sys/auto_init: added initialization for enc28j60
parent
6cbdec83
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/auto_init.c
+5
-0
5 additions, 0 deletions
sys/auto_init/auto_init.c
sys/auto_init/netif/auto_init_enc28j60.c
+76
-0
76 additions, 0 deletions
sys/auto_init/netif/auto_init_enc28j60.c
with
81 additions
and
0 deletions
sys/auto_init/auto_init.c
+
5
−
0
View file @
692e22eb
...
@@ -153,6 +153,11 @@ void auto_init(void)
...
@@ -153,6 +153,11 @@ void auto_init(void)
auto_init_encx24j600
();
auto_init_encx24j600
();
#endif
#endif
#ifdef MODULE_ENC28J60
extern
void
auto_init_enc28j60
(
void
);
auto_init_enc28j60
();
#endif
#ifdef MODULE_GNRC_SLIP
#ifdef MODULE_GNRC_SLIP
extern
void
auto_init_slip
(
void
);
extern
void
auto_init_slip
(
void
);
auto_init_slip
();
auto_init_slip
();
...
...
This diff is collapsed.
Click to expand it.
sys/auto_init/netif/auto_init_enc28j60.c
0 → 100644
+
76
−
0
View file @
692e22eb
/*
* Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de>
* 2015 Freie Universität Berlin
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*
*/
/**
* @ingroup auto_init_gnrc_netif
* @{
*
* @file
* @brief Auto initialization for ENC28j60 Ethernet devices
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/
#ifdef MODULE_ENC28J60
#include
"enc28j60.h"
#include
"enc28j60_params.h"
#include
"net/gnrc/netdev2.h"
#include
"net/gnrc/netdev2/eth.h"
#define ENABLE_DEBUG (0)
#include
"debug.h"
/**
* @brief Define stack parameters for the MAC layer thread
* @{
*/
#define MAC_STACKSIZE (THREAD_STACKSIZE_DEFAULT)
#define MAC_PRIO (THREAD_PRIORITY_MAIN - 4)
/*** @} */
/**
* @brief Find out how many of these devices we need to care for
*/
#define ENC28J60_NUM (sizeof(enc28j60_params) / sizeof(enc28j60_params[0]))
/**
* @brief Allocate memory for the device descriptors
* @{
*/
static
enc28j60_t
dev
[
ENC28J60_NUM
];
static
gnrc_netdev2_t
gnrc_adpt
[
ENC28J60_NUM
];
/** @} */
/**
* @brief Stacks for the MAC layer threads
*/
static
char
stack
[
MAC_STACKSIZE
][
ENC28J60_NUM
];
void
auto_init_enc28j60
(
void
)
{
for
(
int
i
=
0
;
i
<
ENC28J60_NUM
;
i
++
)
{
DEBUG
(
"auto_init_enc28j60(): initializing device [%i]...
\n
"
,
i
);
/* setup netdev2 device */
enc28j60_setup
(
&
dev
[
i
],
&
enc28j60_params
[
i
]);
/* initialize netdev2 <-> gnrc adapter state */
gnrc_netdev2_eth_init
(
&
gnrc_adpt
[
i
],
(
netdev2_t
*
)
&
dev
[
i
]);
/* start gnrc netdev2 thread */
gnrc_netdev2_init
(
stack
[
i
],
MAC_STACKSIZE
,
MAC_PRIO
,
"gnrc_enc28j60"
,
&
gnrc_adpt
[
i
]);
}
}
#else
typedef
int
dont_be_pedantic
;
#endif
/* MODULE_ENC28J60 */
/** @} */
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