mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
boards: removed support for weio
No maintainer and no hardware available to the community.
This commit is contained in:
parent
480f77065b
commit
cfa9580f31
@ -1,3 +0,0 @@
|
||||
MODULE = board
|
||||
|
||||
include $(RIOTBASE)/Makefile.base
|
@ -1,14 +0,0 @@
|
||||
# Put defined MCU peripherals here (in alphabetical order)
|
||||
FEATURES_PROVIDED += periph_adc
|
||||
FEATURES_PROVIDED += periph_cpuid
|
||||
FEATURES_PROVIDED += periph_gpio
|
||||
FEATURES_PROVIDED += periph_pwm
|
||||
FEATURES_PROVIDED += periph_spi
|
||||
FEATURES_PROVIDED += periph_timer
|
||||
FEATURES_PROVIDED += periph_uart
|
||||
|
||||
# Various other features (if any)
|
||||
FEATURES_PROVIDED += cpp
|
||||
|
||||
# The board MPU family (used for grouping by the CI system)
|
||||
FEATURES_MCU_GROUP = cortex_m0_1
|
@ -1,18 +0,0 @@
|
||||
# define the cpu used by the weio board
|
||||
export CPU = lpc11u34
|
||||
|
||||
export FLASHER =
|
||||
export DEBUGGER =
|
||||
export DEBUGSERVER =
|
||||
|
||||
export OFLAGS = -O binary
|
||||
export HEXFILE = $(ELFFILE:.elf=.bin)
|
||||
export FFLAGS =
|
||||
export DEBUGGER_FLAGS =
|
||||
|
||||
# define the default port depending on the host OS
|
||||
PORT_LINUX ?= /dev/ttyACM0
|
||||
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.SLAB_USBtoUART*)))
|
||||
|
||||
# setup serial terminal
|
||||
include $(RIOTMAKE)/tools/serial.inc.mk
|
@ -1,32 +0,0 @@
|
||||
/*
|
||||
* 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_weio
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Board specific implementations for the WeIO board
|
||||
*
|
||||
* @author Paul RATHGEB <paul.rathgeb@skynet.be>
|
||||
*
|
||||
* @}
|
||||
*/
|
||||
|
||||
#include "cpu.h"
|
||||
#include "board.h"
|
||||
|
||||
void board_init(void)
|
||||
{
|
||||
/* initialize and turn off the boards LEDs */
|
||||
LED_PORT->DIR[1] = (LED0_MASK | LED1_MASK | LED2_MASK);
|
||||
LED_PORT->SET[1] = (LED0_MASK | LED1_MASK | LED2_MASK);
|
||||
|
||||
/* initialize the CPU */
|
||||
cpu_init();
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup boards_weio WeIO development kit
|
||||
* @ingroup boards
|
||||
* @brief Support for the WeIO board
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Board specific definitions for the WeIO board
|
||||
*
|
||||
* @author Paul RATHGEB <paul.rathgeb@skynet.be>
|
||||
*/
|
||||
|
||||
#ifndef BOARD_H
|
||||
#define BOARD_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "bitarithm.h"
|
||||
#include "cpu.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name LED pin definitions and handlers
|
||||
* @{
|
||||
*/
|
||||
#define LED0_PIN GPIO_PIN(1, 13)
|
||||
#define LED1_PIN GPIO_PIN(1, 14)
|
||||
#define LED2_PIN GPIO_PIN(1, 15)
|
||||
|
||||
#define LED_PORT LPC_GPIO
|
||||
#define LED0_MASK BIT13
|
||||
#define LED1_MASK BIT14
|
||||
#define LED2_MASK BIT15
|
||||
|
||||
#define LED0_ON (LED_PORT->CLR[1] = LED0_MASK)
|
||||
#define LED0_OFF (LED_PORT->SET[1] = LED0_MASK)
|
||||
#define LED0_TOGGLE (LED_PORT->NOT[1] = LED0_MASK)
|
||||
|
||||
#define LED1_ON (LED_PORT->CLR[1] = LED1_MASK)
|
||||
#define LED1_OFF (LED_PORT->SET[1] = LED1_MASK)
|
||||
#define LED1_TOGGLE (LED_PORT->NOT[1] = LED1_MASK)
|
||||
|
||||
#define LED2_ON (LED_PORT->CLR[1] = LED2_MASK)
|
||||
#define LED2_OFF (LED_PORT->SET[1] = LED2_MASK)
|
||||
#define LED2_TOGGLE (LED_PORT->NOT[1] = LED2_MASK)
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @brief Initialize board specific hardware, include clocks, LEDs and stdio
|
||||
*/
|
||||
void board_init(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* BOARD_H */
|
||||
/** @} */
|
@ -1,135 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2014 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_weio
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Peripheral MCU configuration for the WeIO board
|
||||
*
|
||||
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
||||
* @author Paul RATHGEB <paul.rathgeb@skynet.be>
|
||||
*/
|
||||
|
||||
#ifndef PERIPH_CONF_H
|
||||
#define PERIPH_CONF_H
|
||||
|
||||
#include "periph_cpu.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name Clock configuration
|
||||
* @{
|
||||
*/
|
||||
#define CLOCK_CORECLOCK (48000000U)
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @name Timer configuration
|
||||
* @{
|
||||
*/
|
||||
#define TIMER_NUMOF (1U)
|
||||
#define TIMER_0_EN 1
|
||||
#define TIMER_IRQ_PRIO 1
|
||||
|
||||
/* Timer 0 configuration */
|
||||
#define TIMER_0_DEV LPC_CT32B1
|
||||
#define TIMER_0_CHANNELS 4
|
||||
#define TIMER_0_FREQ (48000000ul)
|
||||
#define TIMER_0_MAX_VALUE (0xffffffff)
|
||||
#define TIMER_0_CLKEN() (LPC_SYSCON->SYSAHBCLKCTRL |= (1 << 10))
|
||||
#define TIMER_0_CLKDIS() (LPC_SYSCON->SYSAHBCLKCTRL &= ~(1 << 10))
|
||||
#define TIMER_0_ISR isr_ct32b1
|
||||
#define TIMER_0_IRQ TIMER_32_1_IRQn
|
||||
/* @} */
|
||||
|
||||
/**
|
||||
* @name UART configuration
|
||||
* @{
|
||||
*/
|
||||
#define UART_NUMOF (1U)
|
||||
#define UART_0_EN 1
|
||||
#define UART_IRQ_PRIO 2
|
||||
|
||||
/* UART 0 device configuration */
|
||||
#define UART_0_DEV LPC_USART
|
||||
#define UART_0_CLKSEL() (LPC_SYSCON->UARTCLKDIV = (1)) /* PCLK := CCLK / 1 */
|
||||
#define UART_0_CLKEN() (LPC_SYSCON->SYSAHBCLKCTRL |= (1 << 12))
|
||||
#define UART_0_CLKDIS() (LPC_SYSCON->SYSAHBCLKCTRL &= ~(1 << 12))
|
||||
#define UART_0_IRQ UART_IRQn
|
||||
#define UART_0_ISR isr_usart0
|
||||
/* UART 0 pin configuration */
|
||||
#define UART_0_TX_PINSEL (LPC_IOCON->PIO0_19)
|
||||
#define UART_0_RX_PINSEL (LPC_IOCON->PIO0_18)
|
||||
#define UART_0_TX_PINMODE (LPC_IOCON->PIO0_19)
|
||||
#define UART_0_RX_PINMODE (LPC_IOCON->PIO0_18)
|
||||
#define UART_0_TX_PIN (1)
|
||||
#define UART_0_RX_PIN (2)
|
||||
#define UART_0_AF (1)
|
||||
/* @} */
|
||||
|
||||
/**
|
||||
* @name SPI configuration
|
||||
* @{
|
||||
*/
|
||||
static const spi_conf_t spi_config[] = {
|
||||
{
|
||||
.dev = LPC_SSP0,
|
||||
.preset_bit = (1 << 0),
|
||||
.ahb_bit = (1 << 11)
|
||||
},
|
||||
{
|
||||
.dev = LPC_SSP1,
|
||||
.preset_bit = (1 << 2),
|
||||
.ahb_bit = (1 << 18)
|
||||
}
|
||||
};
|
||||
|
||||
#define SPI_NUMOF (sizeof(spi_config) / sizeof(spi_config[0]))
|
||||
/* @} */
|
||||
|
||||
/**
|
||||
* @name PWM configuration
|
||||
* @{
|
||||
*/
|
||||
static const pwm_conf_t pwm_config[] = {
|
||||
{
|
||||
.dev = LPC_CT16B0,
|
||||
.pins = {
|
||||
&LPC_IOCON->PIO1_13,
|
||||
&LPC_IOCON->PIO1_14,
|
||||
&LPC_IOCON->PIO1_15
|
||||
},
|
||||
.clk_bit = BIT7,
|
||||
.af = 0x02
|
||||
},
|
||||
{
|
||||
.dev = LPC_CT32B0,
|
||||
.pins = {
|
||||
&LPC_IOCON->PIO1_24,
|
||||
&LPC_IOCON->PIO1_25,
|
||||
&LPC_IOCON->PIO1_26
|
||||
},
|
||||
.clk_bit = BIT9,
|
||||
.af = 0x01
|
||||
}
|
||||
};
|
||||
|
||||
#define PWM_NUMOF (sizeof(pwm_config) / sizeof(pwm_config[0]))
|
||||
/* @} */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* PERIPH_CONF_H */
|
||||
/** @} */
|
@ -19,7 +19,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon b-l072z-lrwan1 \
|
||||
nucleo32-f042 nucleo32-f303 nucleo32-l031 nucleo-f030 \
|
||||
nucleo-f070 nucleo-f072 nucleo-f103 nucleo-f302 nucleo-f334 \
|
||||
nucleo-l053 nucleo-l073 opencm904 pca10000 pca10005 \
|
||||
spark-core stm32f0discovery weio yunjia-nrf51822
|
||||
spark-core stm32f0discovery yunjia-nrf51822
|
||||
|
||||
# Include packages that pull up and auto-init the link layer.
|
||||
# NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present
|
||||
|
@ -11,7 +11,7 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \
|
||||
chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \
|
||||
nucleo32-f303 nucleo32-l031 nucleo-f030 nucleo-f070 \
|
||||
nucleo-f072 nucleo-f302 nucleo-f334 nucleo-l053 \
|
||||
stm32f0discovery telosb waspmote-pro weio wsn430-v1_3b \
|
||||
stm32f0discovery telosb waspmote-pro wsn430-v1_3b \
|
||||
wsn430-v1_4 z1
|
||||
|
||||
# Include packages that pull up and auto-init the link layer.
|
||||
|
@ -11,7 +11,7 @@ RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \
|
||||
nucleo32-l031 nucleo-f030 nucleo-f334 nucleo-l053 \
|
||||
stm32f0discovery telosb weio wsn430-v1_3b wsn430-v1_4 z1
|
||||
stm32f0discovery telosb wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
# Must read nordic_softdevice_ble package before nanocoap package. However,
|
||||
# can't read it explicitly here because it is read later, as a dependency for
|
||||
|
@ -11,7 +11,7 @@ BOARD ?= samr21-xpro
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f030 nucleo-f334 \
|
||||
stm32f0discovery telosb weio wsn430-v1_3b wsn430-v1_4 \
|
||||
stm32f0discovery telosb wsn430-v1_3b wsn430-v1_4 \
|
||||
z1
|
||||
|
||||
# Must read nordic_softdevice_ble package before nanocoap package. However,
|
||||
|
@ -13,7 +13,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon b-l072z-lrwan1 \
|
||||
nucleo32-f031 nucleo32-f042 nucleo32-f303 nucleo32-l031 \
|
||||
nucleo-f030 nucleo-f070 nucleo-f072 nucleo-f103 nucleo-f302 \
|
||||
nucleo-f334 nucleo-l053 nucleo-l073 opencm904 pca10000 \
|
||||
pca10005 spark-core stm32f0discovery telosb weio wsn430-v1_3b \
|
||||
pca10005 spark-core stm32f0discovery telosb wsn430-v1_3b \
|
||||
wsn430-v1_4 yunjia-nrf51822 z1
|
||||
|
||||
BOARD_BLACKLIST += mips-malta pic32-wifire pic32-clicker# No full UART available.
|
||||
|
@ -11,7 +11,7 @@ BOARD_INSUFFICIENT_MEMORY := calliope-mini chronos microbit msb-430 msb-430h \
|
||||
nucleo32-f031 nucleo32-f042 nucleo32-f303 nucleo32-l031 \
|
||||
nucleo-f030 nucleo-f070 nucleo-f072 nucleo-f103 nucleo-f302 \
|
||||
nucleo-f334 nucleo-l053 spark-core stm32f0discovery telosb \
|
||||
weio wsn430-v1_3b wsn430-v1_4 z1
|
||||
wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
# Include packages that pull up and auto-init the link layer.
|
||||
# NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present
|
||||
|
@ -12,7 +12,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon calliope-mini chronos microbit msb-430
|
||||
nucleo32-f042 nucleo32-f303 nucleo32-l031 nucleo-f030 \
|
||||
nucleo-f070 nucleo-f072 nucleo-f103 nucleo-f302 nucleo-f334 \
|
||||
nucleo-l053 pca10000 pca10005 spark-core stm32f0discovery \
|
||||
telosb weio wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
|
||||
telosb wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
|
||||
|
||||
# Include packages that pull up and auto-init the link layer.
|
||||
# NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present
|
||||
|
@ -10,7 +10,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon b-l072z-lrwan1 \
|
||||
nucleo-f072 nucleo-f103 nucleo-f302 nucleo-f334 nucleo-f410 \
|
||||
nucleo-l053 nucleo-l073 nucleo32-f031 nucleo32-f042 \
|
||||
nucleo32-f303 nucleo32-l031 opencm904 pca10000 \
|
||||
pca10005 spark-core stm32f0discovery weio yunjia-nrf51822 \
|
||||
pca10005 spark-core stm32f0discovery yunjia-nrf51822 \
|
||||
|
||||
BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-uno chronos \
|
||||
msb-430 msb-430h qemu-i386 telosb waspmote-pro wsn430-v1_3b \
|
||||
|
@ -9,7 +9,7 @@ RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \
|
||||
nucleo32-l031 nucleo-f030 nucleo-l053 pca10000 pca10005 \
|
||||
stm32f0discovery telosb weio z1
|
||||
stm32f0discovery telosb z1
|
||||
|
||||
# Include packages that pull up and auto-init the link layer.
|
||||
# NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present
|
||||
|
@ -9,7 +9,7 @@ RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \
|
||||
nucleo32-l031 nucleo-f030 nucleo-l053 stm32f0discovery \
|
||||
telosb weio
|
||||
telosb
|
||||
|
||||
# blacklist this until #6022 is sorted out
|
||||
BOARD_BLACKLIST := nrf52dk
|
||||
|
@ -11,7 +11,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos msb-430 msb-430h nrf51dongle \
|
||||
nrf6310 nucleo32-f031 nucleo32-f042 nucleo32-l031 \
|
||||
nucleo-f030 nucleo-f070 nucleo-f072 nucleo-f334 \
|
||||
nucleo-l053 pca10000 pca10005 stm32f0discovery telosb \
|
||||
weio wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
|
||||
wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
|
||||
|
||||
# Include packages that pull up and auto-init the link layer.
|
||||
# NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present
|
||||
|
@ -6,7 +6,7 @@ BOARD ?= native
|
||||
|
||||
# stm32f0discovery objects are too big with ARM Embedded Toolchain v4.9.3 20141119
|
||||
# (used currently by travis)
|
||||
BOARD_INSUFFICIENT_MEMORY= nucleo32-f031 nucleo32-f042 stm32f0discovery weio
|
||||
BOARD_INSUFFICIENT_MEMORY= nucleo32-f031 nucleo32-f042 stm32f0discovery
|
||||
|
||||
# This has to be the absolute path to the RIOT base directory:
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
@ -4,7 +4,7 @@ include ../Makefile.tests_common
|
||||
BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \
|
||||
nucleo32-f303 nucleo32-l031 nucleo-f030 nucleo-f070 \
|
||||
nucleo-f072 nucleo-f302 nucleo-f303 nucleo-f334 \
|
||||
nucleo-l053 stm32f0discovery telosb weio wsn430-v1_3b \
|
||||
nucleo-l053 stm32f0discovery telosb wsn430-v1_3b \
|
||||
wsn430-v1_4 z1
|
||||
|
||||
|
||||
|
@ -5,7 +5,7 @@ FEATURES_REQUIRED = periph_spi periph_gpio
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h nucleo32-f031 nucleo32-f042 \
|
||||
nucleo32-l031 nucleo-f334 nucleo-l053 \
|
||||
stm32f0discovery telosb weio z1
|
||||
stm32f0discovery telosb z1
|
||||
|
||||
USEMODULE += gnrc_netdev
|
||||
USEMODULE += gnrc_netdev_default
|
||||
|
@ -5,7 +5,7 @@ FEATURES_REQUIRED = periph_spi periph_gpio
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h nucleo32-f031 nucleo32-f042 \
|
||||
nucleo32-l031 nucleo-l053 stm32f0discovery telosb \
|
||||
weio z1
|
||||
z1
|
||||
|
||||
USEMODULE += gnrc_netdev
|
||||
USEMODULE += gnrc_netdev_default
|
||||
|
@ -4,7 +4,7 @@ include ../Makefile.tests_common
|
||||
FEATURES_REQUIRED = periph_spi periph_gpio
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo32-l031 \
|
||||
nucleo-f334 nucleo-l053 stm32f0discovery weio
|
||||
nucleo-f334 nucleo-l053 stm32f0discovery
|
||||
|
||||
USEMODULE += auto_init_gnrc_netif
|
||||
USEMODULE += gnrc_netdev_default
|
||||
|
@ -4,7 +4,7 @@ include ../Makefile.tests_common
|
||||
FEATURES_REQUIRED = periph_uart periph_gpio
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo-f030 nucleo-f334 \
|
||||
stm32f0discovery weio
|
||||
stm32f0discovery
|
||||
|
||||
USEMODULE += xbee
|
||||
USEMODULE += gnrc_netif
|
||||
|
@ -10,7 +10,7 @@ BOARD_BLACKLIST := msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h nucleo32-l031 nucleo32-f031 \
|
||||
nucleo32-f042 nucleo-l053 stm32f0discovery telosb \
|
||||
weio wsn430-v1_3b wsn430-v1_4 z1
|
||||
wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
USEPKG += emb6
|
||||
|
||||
|
@ -6,7 +6,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos maple-mini msb-430 msb-430h \
|
||||
nrf51dongle nrf6310 nucleo32-f031 nucleo32-f042 \
|
||||
nucleo32-l031 nucleo-f030 nucleo-f103 nucleo-f334 nucleo-l053 \
|
||||
pca10000 pca10005 spark-core stm32f0discovery telosb \
|
||||
weio wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
|
||||
wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
|
||||
|
||||
# Include packages that pull up and auto-init the link layer.
|
||||
# NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present
|
||||
|
@ -6,7 +6,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos maple-mini msb-430 msb-430h \
|
||||
nrf51dongle nrf6310 nucleo32-f031 nucleo32-f042 \
|
||||
nucleo32-l031 nucleo-f030 nucleo-f070 nucleo-f103 \
|
||||
nucleo-f334 nucleo-l053 pca10000 pca10005 spark-core \
|
||||
stm32f0discovery telosb weio wsn430-v1_3b wsn430-v1_4 \
|
||||
stm32f0discovery telosb wsn430-v1_3b wsn430-v1_4 \
|
||||
yunjia-nrf51822 z1
|
||||
|
||||
# Include packages that pull up and auto-init the link layer.
|
||||
|
@ -17,7 +17,7 @@ USEMODULE += posix
|
||||
|
||||
CFLAGS += -DDEVELHELP
|
||||
|
||||
LOW_MEMORY_BOARDS := nucleo-f334 msb-430 msb-430h weio
|
||||
LOW_MEMORY_BOARDS := nucleo-f334 msb-430 msb-430h
|
||||
|
||||
ifeq ($(BOARD),$(filter $(BOARD),$(LOW_MEMORY_BOARDS)))
|
||||
CFLAGS += -DGNRC_PKTBUF_SIZE=512 -DGNRC_IPV6_NETIF_ADDR_NUMOF=4 -DGNRC_IPV6_NC_SIZE=1
|
||||
|
@ -17,7 +17,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \
|
||||
nucleo32-f042 nucleo32-f303 nucleo32-l031 nucleo-f030 \
|
||||
nucleo-f070 nucleo-f072 nucleo-f302 nucleo-f334 nucleo-l053 \
|
||||
pca10000 pca10005 sb-430 sb-430h stm32f0discovery telosb \
|
||||
weio wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
|
||||
wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
|
||||
|
||||
# Target Address, Target Port and number of Test Cycles
|
||||
CFLAGS += -DTARGET_ADDR=\"$(TCP_TARGET_ADDR)\"
|
||||
|
@ -17,7 +17,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \
|
||||
nucleo32-f042 nucleo32-f303 nucleo32-l031 nucleo-f030 \
|
||||
nucleo-f070 nucleo-f072 nucleo-f302 nucleo-f334 nucleo-l053 \
|
||||
pca10000 pca10005 sb-430 sb-430h stm32f0discovery telosb \
|
||||
weio wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
|
||||
wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
|
||||
|
||||
# This has to be the absolute path to the RIOT base directory:
|
||||
RIOTBASE ?= $(CURDIR)/../..
|
||||
|
@ -6,7 +6,7 @@ BOARD_INSUFFICIENT_MEMORY := calliope-mini chronos microbit msb-430 msb-430h \
|
||||
nucleo32-f031 nucleo32-f042 nucleo32-f303 nucleo32-l031 \
|
||||
nucleo-f030 nucleo-f070 nucleo-f072 nucleo-f103 nucleo-f302 \
|
||||
nucleo-f334 nucleo-l053 spark-core stm32f0discovery telosb \
|
||||
weio wsn430-v1_3b wsn430-v1_4 z1
|
||||
wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
USEMODULE += gnrc_netdev_default
|
||||
USEMODULE += auto_init_gnrc_netif
|
||||
|
@ -8,7 +8,7 @@ BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove
|
||||
# The MSP boards don't feature round(), exp(), and log(), which are used in the unittests
|
||||
BOARD_BLACKLIST += chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo32-l031 weio
|
||||
BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo32-l031
|
||||
|
||||
USEMODULE += libfixmath-unittests
|
||||
|
||||
|
@ -8,7 +8,7 @@ BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \
|
||||
wsn430-v1_4 z1
|
||||
BOARD_INSUFFICIENT_MEMORY := airfy-beacon nrf6310 nucleo32-f031 nucleo32-f042 \
|
||||
nucleo32-l031 nucleo-f030 nucleo-f334 nucleo-l053 \
|
||||
pca10005 stm32f0discovery weio yunjia-nrf51822
|
||||
pca10005 stm32f0discovery yunjia-nrf51822
|
||||
|
||||
# including lwip_ipv6_mld would currently break this test on at86rf2xx radios
|
||||
USEMODULE += lwip lwip_ipv6_autoconfig lwip_sock_ip lwip_netdev
|
||||
|
@ -7,7 +7,7 @@ BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \
|
||||
msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \
|
||||
wsn430-v1_4 z1
|
||||
BOARD_INSUFFICIENT_MEMORY = nucleo32-f031 nucleo32-f042 nucleo32-l031 nucleo-f030 \
|
||||
nucleo-f334 nucleo-l053 stm32f0discovery weio
|
||||
nucleo-f334 nucleo-l053 stm32f0discovery
|
||||
|
||||
LWIP_IPV4 ?= 0
|
||||
|
||||
|
@ -8,7 +8,7 @@ BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \
|
||||
msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \
|
||||
wsn430-v1_4 z1
|
||||
BOARD_INSUFFICIENT_MEMORY = nucleo32-f031 nucleo32-f042 nucleo32-l031 nucleo-f030 \
|
||||
nucleo-f334 nucleo-l053 stm32f0discovery weio
|
||||
nucleo-f334 nucleo-l053 stm32f0discovery
|
||||
|
||||
LWIP_IPV4 ?= 0
|
||||
|
||||
|
@ -8,7 +8,7 @@ BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \
|
||||
msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \
|
||||
wsn430-v1_4 z1
|
||||
BOARD_INSUFFICIENT_MEMORY = nucleo32-f031 nucleo32-f042 nucleo32-l031 nucleo-f030 \
|
||||
nucleo-f334 nucleo-l053 stm32f0discovery weio
|
||||
nucleo-f334 nucleo-l053 stm32f0discovery
|
||||
|
||||
LWIP_IPV4 ?= 0
|
||||
|
||||
|
@ -2,7 +2,7 @@ APPLICATION = mutex_order
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo32-l031 nucleo-f030 \
|
||||
nucleo-l053 stm32f0discovery weio
|
||||
nucleo-l053 stm32f0discovery
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
||||
|
@ -5,7 +5,7 @@ BOARD_BLACKLIST := arduino-mega2560 chronos msb-430 msb-430h telosb \
|
||||
wsn430-v1_3b wsn430-v1_4 z1 waspmote-pro arduino-uno \
|
||||
arduino-duemilanove
|
||||
BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo32-l031 nucleo-f030 \
|
||||
nucleo-f334 nucleo-l053 stm32f0discovery weio
|
||||
nucleo-f334 nucleo-l053 stm32f0discovery
|
||||
|
||||
USEMODULE += gnrc_ipv6
|
||||
USEMODULE += gnrc_sock_udp
|
||||
|
@ -17,7 +17,7 @@ BOARD_WHITELIST := native airfy-beacon arduino-due arduino-duemilanove arduino-m
|
||||
nucleo32-f042 nucleo32-f303 nucleo32-l031 nucleo32-l432 openmote-cc2538 \
|
||||
pba-d-01-kw2x pca10005 remote-pa remote-reva remote-revb samd21-xpro \
|
||||
saml21-xpro samr21-xpro sodaq-autonomo spark-core stm32f0discovery \
|
||||
stm32f3discovery stm32f4discovery telosb udoo waspmote-pro weio \
|
||||
stm32f3discovery stm32f4discovery telosb udoo waspmote-pro \
|
||||
wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
|
||||
|
||||
ifeq ($(BOARD),native)
|
||||
|
@ -6,7 +6,7 @@ BOARD_BLACKLIST := arduino-mega2560 chronos msb-430 msb-430h telosb wsn430-v1_3b
|
||||
wsn430-v1_4 z1 waspmote-pro arduino-uno arduino-duemilanove
|
||||
BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \
|
||||
nucleo32-l031 nucleo-f030 nucleo-f070 nucleo-f334 nucleo-l053 \
|
||||
stm32f0discovery telosb weio wsn430-v1_3b wsn430-v1_4 \
|
||||
stm32f0discovery telosb wsn430-v1_3b wsn430-v1_4 \
|
||||
z1
|
||||
|
||||
USEMODULE += gnrc_ipv6
|
||||
|
@ -4,7 +4,7 @@ include ../Makefile.tests_common
|
||||
BOARD_INSUFFICIENT_MEMORY := chronos mbed_lpc1768 msb-430 msb-430h nrf6310 \
|
||||
nucleo32-f031 nucleo32-f042 nucleo32-l031 nucleo-f030 \
|
||||
nucleo-f334 nucleo-l053 pca10000 pca10005 spark-core \
|
||||
stm32f0discovery weio yunjia-nrf51822
|
||||
stm32f0discovery yunjia-nrf51822
|
||||
|
||||
USEMODULE += fmt
|
||||
USEMODULE += posix_semaphore
|
||||
|
@ -3,7 +3,7 @@ include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f030 nucleo-l053 \
|
||||
nucleo32-f031 nucleo32-f042 nucleo32-l031 \
|
||||
stm32f0discovery telosb weio wsn430-v1_3b \
|
||||
stm32f0discovery telosb wsn430-v1_3b \
|
||||
wsn430-v1_4 z1
|
||||
|
||||
CFLAGS += -DDEVELHELP
|
||||
|
@ -13,6 +13,6 @@ CFLAGS += -DNATIVE_AUTO_EXIT
|
||||
BOARD_INSUFFICIENT_MEMORY += airfy-beacon chronos mbed_lpc1768 msb-430 msb-430h \
|
||||
nrf51dongle nrf6310 nucleo32-f031 nucleo32-f042 nucleo32-l031 \
|
||||
nucleo-f030 nucleo-f334 nucleo-l053 pca10000 pca10005 \
|
||||
spark-core stm32f0discovery weio yunjia-nrf51822
|
||||
spark-core stm32f0discovery yunjia-nrf51822
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
@ -2,7 +2,7 @@ APPLICATION = rmutex
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo32-l031 nucleo-f030 \
|
||||
nucleo-l053 stm32f0discovery weio
|
||||
nucleo-l053 stm32f0discovery
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
||||
|
@ -3,7 +3,7 @@ include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h nucleo32-f031 nucleo32-f042 \
|
||||
nucleo32-l031 nucleo-f030 nucleo-f334 nucleo-l053 \
|
||||
stm32f0discovery weio
|
||||
stm32f0discovery
|
||||
|
||||
BOARD_BLACKLIST += mips-malta
|
||||
|
||||
|
@ -5,7 +5,7 @@ include ../Makefile.tests_common
|
||||
BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo32-f031 \
|
||||
nucleo32-f042 nucleo32-l031 nucleo-f030 \
|
||||
nucleo-f334 nucleo-l053 stm32f0discovery \
|
||||
telosb weio z1
|
||||
telosb z1
|
||||
|
||||
USEMODULE += sntp
|
||||
USEMODULE += gnrc_sock_udp
|
||||
|
@ -6,7 +6,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon b-l072z-lrwan1 calliope-mini cc2650stk
|
||||
nrf6310 nucleo32-f031 nucleo32-f042 nucleo32-f303 \
|
||||
nucleo32-l031 nucleo-f030 nucleo-f070 nucleo-f072 \
|
||||
nucleo-f103 nucleo-f302 nucleo-f334 nucleo-l053 nucleo-l073 \
|
||||
opencm904 pca10000 pca10005 spark-core stm32f0discovery weio \
|
||||
opencm904 pca10000 pca10005 spark-core stm32f0discovery \
|
||||
yunjia-nrf51822
|
||||
|
||||
DISABLE_MODULE += auto_init
|
||||
|
@ -57,7 +57,6 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon \
|
||||
stm32f3discovery \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weio \
|
||||
wsn430-v1_3b \
|
||||
wsn430-v1_4 \
|
||||
yunjia-nrf51822 z1
|
||||
@ -133,7 +132,6 @@ ARM_CORTEX_M_BOARDS := airfy-beacon \
|
||||
stm32f3discovery \
|
||||
stm32f4discovery \
|
||||
udoo \
|
||||
weio \
|
||||
yunjia-nrf51822
|
||||
|
||||
DISABLE_TEST_FOR_ARM_CORTEX_M := tests-relic
|
||||
|
Loading…
Reference in New Issue
Block a user