From 10615f863e3f4d1513ab340c16bf68a379f818f0 Mon Sep 17 00:00:00 2001 From: haukepetersen <hauke.petersen@fu-berlin.de> Date: Wed, 29 Apr 2015 21:29:02 +0200 Subject: [PATCH] board/iot-lab: added network interface init --- boards/iot-lab_M3/Makefile.dep | 5 ++ boards/iot-lab_M3/auto_init_ng_netif/Makefile | 1 + .../auto_init_ng_netif/netif_board.c | 63 +++++++++++++++++++ boards/iot-lab_M3/include/board.h | 1 + 4 files changed, 70 insertions(+) create mode 100644 boards/iot-lab_M3/auto_init_ng_netif/Makefile create mode 100644 boards/iot-lab_M3/auto_init_ng_netif/netif_board.c diff --git a/boards/iot-lab_M3/Makefile.dep b/boards/iot-lab_M3/Makefile.dep index ab5c150ef0..42bad1251e 100644 --- a/boards/iot-lab_M3/Makefile.dep +++ b/boards/iot-lab_M3/Makefile.dep @@ -4,3 +4,8 @@ ifneq (,$(filter defaulttransceiver,$(USEMODULE))) USEMODULE += transceiver endif endif + +ifneq (,$(filter ng_netif,$(USEMODULE))) + USEMODULE += ng_at86rf231 + USEMODULE += ng_nomac +endif diff --git a/boards/iot-lab_M3/auto_init_ng_netif/Makefile b/boards/iot-lab_M3/auto_init_ng_netif/Makefile new file mode 100644 index 0000000000..48422e909a --- /dev/null +++ b/boards/iot-lab_M3/auto_init_ng_netif/Makefile @@ -0,0 +1 @@ +include $(RIOTBASE)/Makefile.base diff --git a/boards/iot-lab_M3/auto_init_ng_netif/netif_board.c b/boards/iot-lab_M3/auto_init_ng_netif/netif_board.c new file mode 100644 index 0000000000..b17b0ac640 --- /dev/null +++ b/boards/iot-lab_M3/auto_init_ng_netif/netif_board.c @@ -0,0 +1,63 @@ +/* + * Copyright (C) 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 boards_iot-lab_M3 + * @{ + * + * @file + * @brief Network device initialization code + * + * @author Hauke Petersen <hauke.petersen@fu-berlin.de> + * + * @} + */ + +#include <stdio.h> + +#include "board.h" +#include "auto_init.h" +#include "ng_at86rf2xx.h" +#include "net/ng_nomac.h" +#include "net/ng_netbase.h" + +#define ENABLE_DEBUG (0) +#include "debug.h" + +/** + * @brief Define stack parameters for the MAC layer thread + * @{ + */ +#define MAC_STACKSIZE (KERNEL_CONF_STACKSIZE_DEFAULT) +#define MAC_PRIO (PRIORITY_MAIN - 3) +/** @} */ + +/** + * @brief Device descriptor for the Atmel radio + */ +static ng_at86rf2xx_t radio; + +/** + * @brief Stack for the MAC layer thread + */ +static char nomac_stack[MAC_STACKSIZE]; + + +void auto_init_ng_netif(void) +{ + /* initialize the radio */ + DEBUG("Initializing AT86RF231 radio\n"); + ng_at86rf2xx_init(&radio, AT86RF231_SPI, AT86RF231_SPI_CLK, + AT86RF231_CS, AT86RF231_INT, + AT86RF231_SLEEP, AT86RF231_RESET); + /* starting NOMAC */ + DEBUG("Starting the MAC layer\n"); + ng_nomac_init(nomac_stack, sizeof(nomac_stack), MAC_PRIO, "at86rf233", + (ng_netdev_t *)(&radio)); + DEBUG("Auto init of on-board radio complete\n"); +} diff --git a/boards/iot-lab_M3/include/board.h b/boards/iot-lab_M3/include/board.h index afc8ea8566..e119c22c4b 100644 --- a/boards/iot-lab_M3/include/board.h +++ b/boards/iot-lab_M3/include/board.h @@ -68,6 +68,7 @@ extern "C" { #define AT86RF231_INT GPIO_12 #define AT86RF231_RESET GPIO_13 #define AT86RF231_SLEEP GPIO_14 +#define AT86RF231_SPI_CLK SPI_SPEED_5MHZ /** @} */ /** -- GitLab