From 20728c2528407de425abd909c313d122f2802f1c Mon Sep 17 00:00:00 2001 From: Semjon Kerner <semjon.kerner@fu-berlin.de> Date: Mon, 4 Mar 2019 13:19:22 +0100 Subject: [PATCH] sys/auto_init: add auto_init for nrf52 ieee802.15.4 driver --- sys/auto_init/auto_init.c | 5 +++ sys/auto_init/netif/auto_init_nrf802154.c | 55 +++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 sys/auto_init/netif/auto_init_nrf802154.c diff --git a/sys/auto_init/auto_init.c b/sys/auto_init/auto_init.c index 11e1916395..aa66344aef 100644 --- a/sys/auto_init/auto_init.c +++ b/sys/auto_init/auto_init.c @@ -286,6 +286,11 @@ void auto_init(void) auto_init_sx127x(); #endif +#ifdef MODULE_NRF802154 + extern void auto_init_nrf802154(void); + auto_init_nrf802154(); +#endif + #endif /* MODULE_AUTO_INIT_GNRC_NETIF */ #ifdef MODULE_GNRC_UHCPC diff --git a/sys/auto_init/netif/auto_init_nrf802154.c b/sys/auto_init/netif/auto_init_nrf802154.c new file mode 100644 index 0000000000..2733c2206c --- /dev/null +++ b/sys/auto_init/netif/auto_init_nrf802154.c @@ -0,0 +1,55 @@ +/* + * Copyright (C) 2019 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 sys_auto_init_gnrc_netif + * @{ + * + * @file + * @brief Auto initialization the nRF52840 radio in IEEE802.15.4 mode + * + * @author Hauke Petersen <hauke.petersen@fu-berlin.de> + */ + +#ifdef MODULE_NRF802154 + + +#include "log.h" +#include "board.h" +#include "nrf802154.h" +#include "net/gnrc/netif/ieee802154.h" + +/** + * @brief Define stack parameters for the MAC layer thread + * @{ + */ +#ifndef NRF802154_MAC_STACKSIZE +#define NRF802154_MAC_STACKSIZE (THREAD_STACKSIZE_DEFAULT) +#endif +#ifndef NRF802154_MAC_PRIO +#define NRF802154_MAC_PRIO (GNRC_NETIF_PRIO) +#endif +/** @} */ + +static char _stack[NRF802154_MAC_STACKSIZE]; + +void auto_init_nrf802154(void) +{ + LOG_DEBUG("[auto_init_netif] initializing nrf802154\n"); + + gnrc_netif_ieee802154_create(_stack, + NRF802154_MAC_STACKSIZE, + NRF802154_MAC_PRIO, "nrf802154", + (netdev_t *)&nrf802154_dev); +} +#else +typedef int dont_be_pedantic; +#endif /* MODULE_NRF802154 */ + +/** @} */ -- GitLab