mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-26 23:11:19 +01:00
boards/waspmote-pro: Remove after the deprecation period
This commit is contained in:
parent
8302223ba1
commit
b5dadde19b
@ -1,15 +0,0 @@
|
||||
# Copyright (c) 2020 HAW Hamburg
|
||||
#
|
||||
# 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.
|
||||
|
||||
config BOARD
|
||||
default "waspmote-pro" if BOARD_WASPMOTE_PRO
|
||||
|
||||
config BOARD_WASPMOTE_PRO
|
||||
bool
|
||||
default y
|
||||
select CPU_MODEL_ATMEGA1281
|
||||
|
||||
source "$(RIOTKCONFIG)/Kconfig.ztimer_only"
|
||||
@ -1,3 +0,0 @@
|
||||
MODULE = board
|
||||
|
||||
include $(RIOTBASE)/Makefile.base
|
||||
@ -1,15 +0,0 @@
|
||||
#ifneq (,$(filter saul_default,$(USEMODULE)))
|
||||
# USEMODULE += saul_gpio
|
||||
#endif
|
||||
|
||||
ifneq (,$(filter mtd,$(USEMODULE)))
|
||||
USEMODULE += mtd_sdcard_default
|
||||
endif
|
||||
|
||||
# default to using fatfs on SD card
|
||||
ifneq (,$(filter vfs_default,$(USEMODULE)))
|
||||
USEMODULE += fatfs_vfs
|
||||
USEMODULE += mtd
|
||||
endif
|
||||
|
||||
include $(RIOTMAKE)/boards/ztimer_only.dep.mk
|
||||
@ -1,13 +0,0 @@
|
||||
CPU = atmega1281
|
||||
|
||||
# Put defined MCU peripherals here (in alphabetical order)
|
||||
FEATURES_PROVIDED += periph_adc
|
||||
FEATURES_PROVIDED += periph_i2c
|
||||
FEATURES_PROVIDED += periph_spi
|
||||
FEATURES_PROVIDED += periph_timer
|
||||
FEATURES_PROVIDED += periph_uart
|
||||
FEATURES_PROVIDED += sdcard_spi
|
||||
|
||||
# Various other features (if any)
|
||||
FEATURES_PROVIDED += arduino_analog
|
||||
FEATURES_PROVIDED += arduino_pins
|
||||
@ -1,6 +0,0 @@
|
||||
# configure the terminal program
|
||||
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbserial*)))
|
||||
BAUD ?= 9600
|
||||
WASPMOTE_PRO_BOOTLOADER ?= stk500v1
|
||||
|
||||
include $(RIOTBOARD)/common/atmega/Makefile.include
|
||||
@ -1,42 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2014 Freie Universität Berlin, Hinnerk van Bruinehsen
|
||||
* 2015-18 Kaspar Schleiser <kaspar@schleiser.de>
|
||||
* 2016 INRIA, Francisco Acosta
|
||||
*
|
||||
* 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_waspmote-pro
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Board specific initializations
|
||||
*
|
||||
* @author Hinnerk van Bruinehsen <h.v.bruinehsen@fu-berlin.de>
|
||||
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
||||
* @author Francisco Acosta <francisco.acosta@inria.fr>
|
||||
*
|
||||
* @}
|
||||
*/
|
||||
|
||||
#include "board.h"
|
||||
#include "cpu.h"
|
||||
|
||||
void board_init(void)
|
||||
{
|
||||
/* initialize UART_1 on AUX1 */
|
||||
SET_MUX_AUX1_MODULE;
|
||||
|
||||
#ifdef XBEE_UART
|
||||
#if XBEE_UART == 0
|
||||
/* initialize UART0 on SOCKET0 (XBee) */
|
||||
SET_MUX_SOCKET0;
|
||||
#else
|
||||
/* Initialize UART0 on USB */
|
||||
SET_MUX_USB_MODULE;
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
@ -1,23 +0,0 @@
|
||||
/**
|
||||
@defgroup boards_waspmote-pro Waspmote PRO v1.2
|
||||
@ingroup boards
|
||||
@brief Support for the Waspmote PRO v1.2 board.
|
||||
|
||||
## End of Life
|
||||
|
||||
@deprecated Support for the Waspmote Pro is scheduled for removal after the
|
||||
2024-07 release.
|
||||
|
||||
This board is sold only B2B, so that our community members from the DIY/hobbyist
|
||||
community and academia do not have access to the board. Our community members
|
||||
from the industry mostly develop their own hardware and, therefore, have no
|
||||
interest in supporting this board. As result, none of the RIOT core contributors
|
||||
has access to the hardware, preventing us from doing the necessary testing
|
||||
for maintaining this board.
|
||||
|
||||
## Pin Change Interrupts
|
||||
|
||||
More pins can be used for hardware interrupts using the Pin Change
|
||||
Interrupt feature. See @ref boards_common_atmega for details.
|
||||
|
||||
*/
|
||||
@ -1,129 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2020 J. David Ibáñez <jdavid.ibp@gmail.com>
|
||||
*
|
||||
* 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_waspmote-pro
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Mapping from MCU pins to Arduino pins for Waspmote Pro board
|
||||
*
|
||||
* You can use the defines in this file for simplified interaction with the
|
||||
* Arduino specific pin numbers.
|
||||
*
|
||||
* @author J. David Ibáñez <jdavid.ibp@gmail.com>
|
||||
*/
|
||||
|
||||
#ifndef ARDUINO_IOMAP_H
|
||||
#define ARDUINO_IOMAP_H
|
||||
|
||||
#include "periph/gpio.h"
|
||||
#include "periph/adc.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name Mapping of MCU pins to digital Arduino pins
|
||||
*
|
||||
* @note ISCP pins are not mapped.
|
||||
* @{
|
||||
*/
|
||||
#define ARDUINO_PIN_0 GPIO_PIN(PORT_E, 0)
|
||||
#define ARDUINO_PIN_1 GPIO_PIN(PORT_E, 1)
|
||||
#define ARDUINO_PIN_2 GPIO_PIN(PORT_E, 3)
|
||||
#define ARDUINO_PIN_3 GPIO_PIN(PORT_E, 4)
|
||||
#define ARDUINO_PIN_4 GPIO_PIN(PORT_C, 4)
|
||||
#define ARDUINO_PIN_5 GPIO_PIN(PORT_C, 5)
|
||||
#define ARDUINO_PIN_6 GPIO_PIN(PORT_C, 6)
|
||||
#define ARDUINO_PIN_7 GPIO_PIN(PORT_C, 7)
|
||||
#define ARDUINO_PIN_8 GPIO_PIN(PORT_A, 2)
|
||||
#define ARDUINO_PIN_9 GPIO_PIN(PORT_A, 3)
|
||||
#define ARDUINO_PIN_10 GPIO_PIN(PORT_A, 4)
|
||||
#define ARDUINO_PIN_11 GPIO_PIN(PORT_D, 5)
|
||||
#define ARDUINO_PIN_12 GPIO_PIN(PORT_D, 6)
|
||||
#define ARDUINO_PIN_13 GPIO_PIN(PORT_C, 1)
|
||||
#define ARDUINO_PIN_14 GPIO_PIN(PORT_F, 1)
|
||||
#define ARDUINO_PIN_15 GPIO_PIN(PORT_F, 2)
|
||||
#define ARDUINO_PIN_16 GPIO_PIN(PORT_F, 3)
|
||||
#define ARDUINO_PIN_17 GPIO_PIN(PORT_F, 4)
|
||||
#define ARDUINO_PIN_18 GPIO_PIN(PORT_F, 5)
|
||||
#define ARDUINO_PIN_19 GPIO_PIN(PORT_F, 6)
|
||||
#define ARDUINO_PIN_20 GPIO_PIN(PORT_F, 7)
|
||||
#define ARDUINO_PIN_21 GPIO_PIN(PORT_F, 0)
|
||||
#define ARDUINO_PIN_22 GPIO_PIN(PORT_A, 1)
|
||||
#define ARDUINO_PIN_23 GPIO_PIN(PORT_D, 7)
|
||||
#define ARDUINO_PIN_24 GPIO_PIN(PORT_E, 5)
|
||||
#define ARDUINO_PIN_25 GPIO_PIN(PORT_A, 6)
|
||||
#define ARDUINO_PIN_26 GPIO_PIN(PORT_E, 2)
|
||||
#define ARDUINO_PIN_27 GPIO_PIN(PORT_A, 5)
|
||||
#define ARDUINO_PIN_28 GPIO_PIN(PORT_C, 0)
|
||||
#define ARDUINO_PIN_29 GPIO_PIN(PORT_B, 0)
|
||||
#define ARDUINO_PIN_30 GPIO_PIN(PORT_B, 1)
|
||||
#define ARDUINO_PIN_31 GPIO_PIN(PORT_B, 2)
|
||||
#define ARDUINO_PIN_32 GPIO_PIN(PORT_B, 3)
|
||||
#define ARDUINO_PIN_33 GPIO_PIN(PORT_B, 4)
|
||||
#define ARDUINO_PIN_34 GPIO_PIN(PORT_B, 5)
|
||||
#define ARDUINO_PIN_35 GPIO_PIN(PORT_A, 0)
|
||||
#define ARDUINO_PIN_36 GPIO_PIN(PORT_B, 6)
|
||||
#define ARDUINO_PIN_37 GPIO_PIN(PORT_B, 7)
|
||||
#define ARDUINO_PIN_38 GPIO_PIN(PORT_E, 6)
|
||||
#define ARDUINO_PIN_39 GPIO_PIN(PORT_E, 7)
|
||||
#define ARDUINO_PIN_40 GPIO_PIN(PORT_D, 0)
|
||||
#define ARDUINO_PIN_41 GPIO_PIN(PORT_D, 1)
|
||||
#define ARDUINO_PIN_42 GPIO_PIN(PORT_C, 3)
|
||||
#define ARDUINO_PIN_43 GPIO_PIN(PORT_D, 2)
|
||||
#define ARDUINO_PIN_44 GPIO_PIN(PORT_D, 3)
|
||||
#define ARDUINO_PIN_45 GPIO_PIN(PORT_A, 7)
|
||||
#define ARDUINO_PIN_46 GPIO_PIN(PORT_C, 2)
|
||||
#define ARDUINO_PIN_47 GPIO_PIN(PORT_D, 4)
|
||||
#define ARDUINO_PIN_48 GPIO_PIN(PORT_G, 2)
|
||||
#define ARDUINO_PIN_49 GPIO_PIN(PORT_G, 1)
|
||||
#define ARDUINO_PIN_50 GPIO_PIN(PORT_G, 0)
|
||||
#define ARDUINO_PIN_51 GPIO_PIN(PORT_G, 3)
|
||||
#define ARDUINO_PIN_52 GPIO_PIN(PORT_G, 4)
|
||||
|
||||
#define ARDUINO_PIN_LAST 52
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @name Aliases for analog pins
|
||||
* @{
|
||||
*/
|
||||
#define ARDUINO_PIN_A0 ARDUINO_PIN_14
|
||||
#define ARDUINO_PIN_A1 ARDUINO_PIN_15
|
||||
#define ARDUINO_PIN_A2 ARDUINO_PIN_16
|
||||
#define ARDUINO_PIN_A3 ARDUINO_PIN_17
|
||||
#define ARDUINO_PIN_A4 ARDUINO_PIN_18
|
||||
#define ARDUINO_PIN_A5 ARDUINO_PIN_19
|
||||
#define ARDUINO_PIN_A6 ARDUINO_PIN_20
|
||||
#define ARDUINO_PIN_A7 ARDUINO_PIN_21
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @name Analog pin to adc line mapping
|
||||
* @{
|
||||
*/
|
||||
#define ARDUINO_A0 ADC_LINE(0)
|
||||
#define ARDUINO_A1 ADC_LINE(1)
|
||||
#define ARDUINO_A2 ADC_LINE(2)
|
||||
#define ARDUINO_A3 ADC_LINE(3)
|
||||
#define ARDUINO_A4 ADC_LINE(4)
|
||||
#define ARDUINO_A5 ADC_LINE(5)
|
||||
#define ARDUINO_A6 ADC_LINE(6)
|
||||
#define ARDUINO_A7 ADC_LINE(7)
|
||||
#define ARDUINO_ANALOG_PIN_LAST 7
|
||||
/** @} */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* ARDUINO_IOMAP_H */
|
||||
/** @} */
|
||||
@ -1,206 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2014 Freie Universität Berlin, Hinnerk van Bruinehsen
|
||||
*
|
||||
* 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_waspmote-pro
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Board specific definitions for the Waspmote PRO v1.2 board.
|
||||
*
|
||||
* @author Hinnerk van Bruinehsen <h.v.bruinehsen@fu-berlin.de>
|
||||
* @author Francisco Acosta <francisco.acosta@inria.fr>
|
||||
*/
|
||||
|
||||
#ifndef BOARD_H
|
||||
#define BOARD_H
|
||||
|
||||
#include "cpu.h"
|
||||
#include "waspmote_pinmap.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief As the CPU is too slow to handle 115200 baud, we set the default
|
||||
* baudrate to 9600 for this board
|
||||
*/
|
||||
#define STDIO_UART_BAUDRATE (9600U)
|
||||
|
||||
/**
|
||||
* @brief Use the UART 0 for STDIO on this board, if the XBee socket is not
|
||||
* being used
|
||||
*/
|
||||
#ifdef XBEE_UART
|
||||
#if XBEE_UART == 0
|
||||
#define STDIO_UART_DEV (UART_DEV(1))
|
||||
#else
|
||||
#define STDIO_UART_DEV (UART_DEV(0))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name LED pin definitions
|
||||
* @{
|
||||
*/
|
||||
#define LED0_PORT PORTD
|
||||
#define LED1_PORT PORTC
|
||||
#define LED0_PIN (1 << 6)
|
||||
#define LED1_PIN (1 << 1)
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @name Macros for controlling the on-board LEDs.
|
||||
* @{
|
||||
*/
|
||||
#define LED0_ENABLE_PORT DDRD |= (1 << DDD6)
|
||||
#define LED0_ON LED0_PORT |= LED0_PIN
|
||||
#define LED0_OFF LED0_PORT &= ~LED0_PIN
|
||||
#define LED0_TOGGLE LED0_PORT ^= LED0_PIN;
|
||||
|
||||
#define LED1_ENABLE_PORT DDRC |= (1 << DDC1)
|
||||
#define LED1_ON LED1_PORT |= LED1_PIN
|
||||
#define LED1_OFF LED1_PORT &= ~LED1_PIN
|
||||
#define LED1_TOGGLE LED1_PORT ^= LED1_PIN;
|
||||
|
||||
/* for compatibility to other boards */
|
||||
#define LED_GREEN_ON LED1_ON
|
||||
#define LED_GREEN_OFF LED1_OFF
|
||||
#define LED_GREEN_TOGGLE LED1_TOGGLE
|
||||
#define LED_RED_ON LED0_ON
|
||||
#define LED_RED_OFF LED0_OFF
|
||||
#define LED_RED_TOGGLE LED0_TOGGLE
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @name Usage of LED to turn on when a kernel panic occurs.
|
||||
* @{
|
||||
*/
|
||||
#define LED_PANIC LED_RED_ON
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @name Macros for controlling the on-board MUXes.
|
||||
* @{
|
||||
*/
|
||||
#define MUX_PW_PORT PORTD
|
||||
#define MUX0_PORT PORTB
|
||||
#define MUX1_PORT PORTB
|
||||
#define MUX_USB_XBEE_PORT PORTD
|
||||
#define MUX_PW_PIN (1 << 7)
|
||||
#define MUX0_PIN (1 << 6)
|
||||
#define MUX1_PIN (1 << 7)
|
||||
#define MUX_USB_XBEE_PIN (1 << 5)
|
||||
|
||||
#define MUX_PW_ENABLE_PORT DDRD |= (1 << DDD7);
|
||||
#define MUX_PW_ON MUX_PW_PORT |= MUX_PW_PIN
|
||||
#define MUX_PW_OFF MUX_PW_PORT &= ~MUX_PW_PIN
|
||||
|
||||
#define MUX0_ENABLE_PORT DDRB |= (1 << DDB6)
|
||||
#define MUX0_ON MUX0_PORT |= MUX0_PIN
|
||||
#define MUX0_OFF MUX0_PORT &= ~MUX0_PIN
|
||||
|
||||
#define MUX1_ENABLE_PORT DDRB |= (1 << DDB7)
|
||||
#define MUX1_ON MUX1_PORT |= MUX1_PIN
|
||||
#define MUX1_OFF MUX1_PORT &= ~MUX1_PIN
|
||||
|
||||
#define MUX_USB_XBEE_ENABLE_PORT DDRD |= (1 << DDD5)
|
||||
#define MUX_USB_XBEE_ON MUX_USB_XBEE_PORT |= MUX_USB_XBEE_PIN
|
||||
#define MUX_USB_XBEE_OFF MUX_USB_XBEE_PORT &= ~MUX_USB_XBEE_PIN
|
||||
|
||||
/* Multiplexer settings to enable UART1 on the desired module
|
||||
*
|
||||
* --------------
|
||||
* MUX0_OFF & MUX1_ON ---> GPS MODULE
|
||||
* MUX0_ON & MUX1_ON ---> SOCKET1
|
||||
* MUX0_ON & MUX1_OFF ---> AUX1 MODULE
|
||||
* MUX0_OFF & MUX1_OFF ---> AUX2 MODULE
|
||||
*
|
||||
* Multiplexer setting to enable UART0 to the desired module
|
||||
*
|
||||
* --------------
|
||||
* MUX_USB_XBEE_OFF ---> USB MODULE
|
||||
* MUX_USB_XBEE_ON ---> SOCKET0
|
||||
*
|
||||
*/
|
||||
|
||||
#define SET_MUX_GPS MUX_PW_ENABLE_PORT; MUX_PW_ON; \
|
||||
MUX0_ENABLE_PORT; MUX1_ENABLE_PORT; \
|
||||
MUX0_OFF; MUX1_ON
|
||||
#define SET_MUX_SOCKET1 MUX_PW_ENABLE_PORT; MUX_PW_ON; \
|
||||
MUX0_ENABLE_PORT; MUX1_ENABLE_PORT; \
|
||||
MUX0_ON; MUX1_ON
|
||||
#define SET_MUX_AUX1_MODULE MUX_PW_ENABLE_PORT; MUX_PW_ON; \
|
||||
MUX0_ENABLE_PORT; MUX1_ENABLE_PORT; \
|
||||
MUX0_ON; MUX1_OFF
|
||||
#define SET_MUX_AUX2_MODULE MUX_PW_ENABLE_PORT; MUX_PW_ON; \
|
||||
MUX0_ENABLE_PORT; MUX1_ENABLE_PORT; \
|
||||
MUX0_OFF; MUX1_OFF
|
||||
#define SET_MUX_USB_MODULE MUX_PW_ENABLE_PORT; MUX_PW_ON; \
|
||||
MUX_USB_XBEE_ENABLE_PORT; \
|
||||
MUX_USB_XBEE_OFF
|
||||
#define SET_MUX_SOCKET0 MUX_PW_ENABLE_PORT; MUX_PW_ON; \
|
||||
MUX_USB_XBEE_ENABLE_PORT; \
|
||||
MUX_USB_XBEE_ON
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @name CPU clock scale for waspmote-pro
|
||||
* @{
|
||||
*/
|
||||
#define CPU_ATMEGA_CLK_SCALE_INIT CPU_ATMEGA_CLK_SCALE_DIV1
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @name xtimer configuration values
|
||||
* @warning This configuration is not actually compatible with xtimer. Sadly,
|
||||
* no compatible clock frequency can be generated with the given core
|
||||
* frequency
|
||||
* @{
|
||||
*/
|
||||
#define XTIMER_WIDTH (16)
|
||||
#define XTIMER_HZ (230400LU)
|
||||
#define XTIMER_BACKOFF (80)
|
||||
#define XTIMER_ISR_BACKOFF (120)
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @name ztimer configuration values
|
||||
* @{
|
||||
*/
|
||||
#define CONFIG_ZTIMER_USEC_TYPE ZTIMER_TYPE_PERIPH_TIMER /**< Use periph_timer for ZTIMER_USEC */
|
||||
#define CONFIG_ZTIMER_USEC_DEV (TIMER_DEV(0)) /**< Use TIMER_DEV(0) for ZTIMER_USEC */
|
||||
#define CONFIG_ZTIMER_USEC_BASE_FREQ (230400LU) /**< Run timer for ZTIMER_USEC at 230,400 Hz */
|
||||
#define CONFIG_ZTIMER_USEC_WIDTH (16) /**< TIMER_DEV(0) is 16 bit wide */
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @name Onboard micro-sd slot pin definitions
|
||||
* @{
|
||||
*/
|
||||
#define SDCARD_SPI_PARAM_SPI SPI_DEV(0) /**< SPI device */
|
||||
#define SDCARD_SPI_PARAM_CS SD_SS /**< Chip Select */
|
||||
#define SDCARD_SPI_PARAM_CLK SD_SCK /**< Serial Clock */
|
||||
#define SDCARD_SPI_PARAM_MOSI SD_MOSI /**< Master Output, Slave Input */
|
||||
#define SDCARD_SPI_PARAM_MISO SD_MISO /**< Master Input, Slave Output */
|
||||
#define SDCARD_SPI_PARAM_POWER MEM_PW /**< Powen on/off */
|
||||
#define SDCARD_SPI_PARAM_POWER_AH (true) /**< Power on with power pin high */
|
||||
#define CARD_DETECT_PIN SD_PRESENT /**< Pin for card detect */
|
||||
|
||||
/** @} */
|
||||
|
||||
/** Default MTD device */
|
||||
#define MTD_0 mtd_dev_get(0)
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* BOARD_H */
|
||||
/** @} */
|
||||
@ -1,44 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2014 Freie Universität Berlin, Hinnerk van Bruinehsen
|
||||
* Copyright (C) 2016 INRIA, Francisco Acosta
|
||||
* Copyright (C) 2019 Otto-von-Guericke-Universität Magdeburg
|
||||
*
|
||||
* 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_waspmote-pro
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Peripheral MCU configuration for the Waspmote PRO v1.2 board
|
||||
*
|
||||
* @author Hinnerk van Bruinehsen <h.v.bruinehsen@fu-berlin.de>
|
||||
* @author Francisco Acosta <francisco.acosta@inria.fr>
|
||||
* @author Marian Buschsieweke <marian.buschsieweke@ovgu.de>
|
||||
*/
|
||||
|
||||
#ifndef PERIPH_CONF_H
|
||||
#define PERIPH_CONF_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name Clock configuration
|
||||
* @{
|
||||
*/
|
||||
#define CLOCK_CORECLOCK (14745600UL)
|
||||
/** @} */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#include "periph_conf_atmega_common.h"
|
||||
|
||||
#endif /* PERIPH_CONF_H */
|
||||
/** @} */
|
||||
@ -1,94 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2016 INRIA
|
||||
*
|
||||
* 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_waspmote-pro
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Mapping from MCU pins to Waspmote pins
|
||||
*
|
||||
* You can use the defines in this file for simplified interaction with the
|
||||
* Waspmote specific pin names.
|
||||
*
|
||||
* @author Francisco Acosta <francisco.acosta@inria.fr>
|
||||
*/
|
||||
|
||||
#ifndef WASPMOTE_PINMAP_H
|
||||
#define WASPMOTE_PINMAP_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name Mapping of MCU pins to Waspomte board pins
|
||||
* @{
|
||||
*/
|
||||
/*
|
||||
* DESCRIPTION WASP API PIN PORT PIN
|
||||
*/
|
||||
#define USB_XBEE_RX GPIO_PIN(PORT_E, 0)
|
||||
#define USB_XBEE_TX GPIO_PIN(PORT_E, 1)
|
||||
#define DIGITAL1 GPIO_PIN(PORT_E, 3)
|
||||
#define DIGITAL0 GPIO_PIN(PORT_E, 4)
|
||||
#define DIGITAL7 GPIO_PIN(PORT_C, 4)
|
||||
#define DIGITAL8 GPIO_PIN(PORT_C, 5)
|
||||
#define DIGITAL6 GPIO_PIN(PORT_C, 6)
|
||||
#define DIGITAL5 GPIO_PIN(PORT_C, 7)
|
||||
#define DIGITAL2 GPIO_PIN(PORT_A, 2)
|
||||
#define DIGITAL4 GPIO_PIN(PORT_A, 3)
|
||||
#define DIGITAL3 GPIO_PIN(PORT_A, 4)
|
||||
#define MUX_USB_XBEE GPIO_PIN(PORT_D, 5)
|
||||
#define LED0 GPIO_PIN(PORT_F, 4)
|
||||
#define LED1 GPIO_PIN(PORT_C, 1)
|
||||
#define ANA0 GPIO_PIN(PORT_F, 1)
|
||||
#define ANA1 GPIO_PIN(PORT_F, 2)
|
||||
#define ANA2 GPIO_PIN(PORT_F, 3)
|
||||
#define ANA3 GPIO_PIN(PORT_F, 4)
|
||||
#define ANA4 GPIO_PIN(PORT_F, 5)
|
||||
#define ANA5 GPIO_PIN(PORT_F, 6)
|
||||
#define ANA6 GPIO_PIN(PORT_F, 7)
|
||||
#define BAT_MONITOR GPIO_PIN(PORT_F, 0)
|
||||
#define XBEE_PW GPIO_PIN(PORT_A, 1)
|
||||
#define MUX_PW GPIO_PIN(PORT_D, 7)
|
||||
#define SENS_PW_5V GPIO_PIN(PORT_E, 5)
|
||||
#define BAT_MONITOR_PW GPIO_PIN(PORT_A, 6)
|
||||
#define SENS_PW_3V3 GPIO_PIN(PORT_E, 2)
|
||||
#define MEM_PW GPIO_PIN(PORT_A, 5)
|
||||
#define SD_PRESENT GPIO_PIN(PORT_C, 0)
|
||||
#define SD_SS GPIO_PIN(PORT_B, 0)
|
||||
#define SD_SCK GPIO_PIN(PORT_B, 1)
|
||||
#define SD_MOSI GPIO_PIN(PORT_B, 2)
|
||||
#define SD_MISO GPIO_PIN(PORT_B, 3)
|
||||
#define HIB_PIN GPIO_PIN(PORT_B, 4)
|
||||
#define SOCKET0_SS GPIO_PIN(PORT_B, 5)
|
||||
#define GPS_PW GPIO_PIN(PORT_A, 0)
|
||||
#define MUX_0 GPIO_PIN(PORT_B, 6)
|
||||
#define MUX_1 GPIO_PIN(PORT_B, 7)
|
||||
#define RDY_ACC GPIO_PIN(PORT_E, 6)
|
||||
#define RST_RTC GPIO_PIN(PORT_E, 7)
|
||||
#define I2C_SCL GPIO_PIN(PORT_D, 0)
|
||||
#define I2C_SDA GPIO_PIN(PORT_D, 1)
|
||||
#define GPRS_PW GPIO_PIN(PORT_C, 3)
|
||||
#define MUX_RX GPIO_PIN(PORT_D, 2)
|
||||
#define MUX_TX GPIO_PIN(PORT_D, 3)
|
||||
#define XBEE_MON GPIO_PIN(PORT_A, 7)
|
||||
#define GPRS_PIN GPIO_PIN(PORT_C, 2)
|
||||
#define XBEE_SLEEP GPIO_PIN(PORT_D, 4)
|
||||
#define RTC_PW GPIO_PIN(PORT_G, 2)
|
||||
#define RTC_SLEEP GPIO_PIN(PORT_G, 1)
|
||||
#define LOW_BAT_MON GPIO_PIN(PORT_G, 0)
|
||||
/** @} */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* WASPMOTE_PINMAP_H */
|
||||
/** @} */
|
||||
@ -120,7 +120,6 @@ DEFAULT_BOARDS = [
|
||||
'slwstk6220a',
|
||||
'stm32f723e-disco',
|
||||
'stm32mp157c-dk2',
|
||||
'waspmote-pro',
|
||||
'waveshare-nrf52840-eval-kit',
|
||||
'weact-f401ce',
|
||||
'z1'
|
||||
|
||||
51
dist/tools/doccheck/exclude_simple
vendored
51
dist/tools/doccheck/exclude_simple
vendored
@ -241,13 +241,6 @@ warning: Member AES_KEY_SIZE_256 (macro definition) of file aes.h is not documen
|
||||
warning: Member AES_MAXNR (macro definition) of file aes.h is not documented.
|
||||
warning: Member AIP31068_PARAMS (macro definition) of file aip31068_params.h is not documented.
|
||||
warning: Member ALL_INT_MASK (macro definition) of file nrf24l01p_settings.h is not documented.
|
||||
warning: Member ANA0 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member ANA1 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member ANA2 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member ANA3 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member ANA4 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member ANA5 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member ANA6 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member AON_IOC_CLK32KCTL_OEN (macro definition) of file cc26xx_cc13xx_ioc.h is not documented.
|
||||
warning: Member AON_PMCTL_RESETCTL_BOOT_DET_0_CLR_m (macro definition) of file cc26x2_cc13x2_prcm.h is not documented.
|
||||
warning: Member AON_PMCTL_RESETCTL_BOOT_DET_0_m (macro definition) of file cc26x2_cc13x2_prcm.h is not documented.
|
||||
@ -630,8 +623,6 @@ warning: Member AUX_SYSIF_OPMODEREQ_REQ_PDA (macro definition) of file cc26x2_cc
|
||||
warning: Member BACKLIGHT_MASK (macro definition) of file board.h is not documented.
|
||||
warning: Member BACKLIGHT_OFF (macro definition) of file board.h is not documented.
|
||||
warning: Member BACKLIGHT_ON (macro definition) of file board.h is not documented.
|
||||
warning: Member BAT_MONITOR (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member BAT_MONITOR_PW (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member BATTERY_ADC (macro definition) of file board.h is not documented.
|
||||
warning: Member BBC0_regs (variable) of file at86rf215_registers.h is not documented.
|
||||
warning: Member BBC1_regs (variable) of file at86rf215_registers.h is not documented.
|
||||
@ -1768,15 +1759,6 @@ warning: Member DHT_PARAM_PULL (macro definition) of file dht_params.h is not do
|
||||
warning: Member DHT_PARAMS (macro definition) of file dht_params.h is not documented.
|
||||
warning: Member DHT_PARAM_TYPE (macro definition) of file dht_params.h is not documented.
|
||||
warning: Member DHT_SAULINFO (macro definition) of file dht_params.h is not documented.
|
||||
warning: Member DIGITAL0 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member DIGITAL1 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member DIGITAL2 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member DIGITAL3 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member DIGITAL4 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member DIGITAL5 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member DIGITAL6 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member DIGITAL7 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member DIGITAL8 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member DISABLE_INTERRUPTS() (macro definition) of file board_info.h is not documented.
|
||||
warning: Member DISK_GET_BLOCK_SIZE (macro definition) of group sys_shell_commands is not documented.
|
||||
warning: Member DISK_GET_SECTOR_COUNT (macro definition) of group sys_shell_commands is not documented.
|
||||
@ -2460,14 +2442,11 @@ warning: Member GPIO_PIN(x, y) (macro definition) of file periph_cpu_common.h is
|
||||
warning: Member GPIO_PIN(x, y) (macro definition) of file periph_cpu.h is not documented.
|
||||
warning: Member gpio_t (typedef) of file periph_cpu_common.h is not documented.
|
||||
warning: Member gpio_t (typedef) of file periph_cpu.h is not documented.
|
||||
warning: Member GPRS_PIN (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member GPRS_PW (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member GPS_ENABLE_MASK (macro definition) of file board.h is not documented.
|
||||
warning: Member GPS_ENABLE_OFF (macro definition) of file board.h is not documented.
|
||||
warning: Member GPS_ENABLE_ON (macro definition) of file board.h is not documented.
|
||||
warning: Member GPS_ENABLE_PIN (macro definition) of file board.h is not documented.
|
||||
warning: Member GPS_ENABLE_PORT (macro definition) of file board.h is not documented.
|
||||
warning: Member GPS_PW (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member GPS_RST_PIN (macro definition) of group boards_ublox-c030-u201 is not documented.
|
||||
warning: Member GPS_TIMEPULSE_MODE (macro definition) of file board.h is not documented.
|
||||
warning: Member GPS_TIMEPULSE_PIN (macro definition) of file board.h is not documented.
|
||||
@ -2663,7 +2642,6 @@ warning: Member HDC1010_PARAM_ADDR (macro definition) of file board.h is not doc
|
||||
warning: Member HDC1010_PARAM_I2C (macro definition) of file board.h is not documented.
|
||||
warning: Member HDC1010_PIN_DRDY (macro definition) of file board.h is not documented.
|
||||
warning: Member HFXO_FREQ (macro definition) of file periph_conf.h is not documented.
|
||||
warning: Member HIB_PIN (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member HMC5883L_PARAM_DEV (macro definition) of file hmc5883l_params.h is not documented.
|
||||
warning: Member HMC5883L_PARAM_DOR (macro definition) of file hmc5883l_params.h is not documented.
|
||||
warning: Member HMC5883L_PARAM_GAIN (macro definition) of file hmc5883l_params.h is not documented.
|
||||
@ -2757,9 +2735,7 @@ warning: Member I2C_PIN_MASK (macro definition) of file periph_cpu.h is not docu
|
||||
warning: Member i2c_pin_scl(dev) (macro definition) of file periph_cpu.h is not documented.
|
||||
warning: Member i2c_pin_sda(dev) (macro definition) of file periph_cpu.h is not documented.
|
||||
warning: Member I2C_PORT_REG (macro definition) of file periph_cpu.h is not documented.
|
||||
warning: Member I2C_SCL (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member I2C_SCL_PIN (macro definition) of file periph_conf.h is not documented.
|
||||
warning: Member I2C_SDA (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member I2C_SDA_PIN (macro definition) of file periph_conf.h is not documented.
|
||||
warning: Member i2c_speed_t (enumeration) of file periph_cpu.h is not documented.
|
||||
warning: Member IANA_DYNAMIC_PORTRANGE_MAX (macro definition) of group net_iana_portrange is not documented.
|
||||
@ -3112,12 +3088,10 @@ warning: Member LED0_ACTIVE (macro definition) of file board.h is not documented
|
||||
warning: Member LED0_BIT (macro definition) of file board.h is not documented.
|
||||
warning: Member LED0B_PIN (macro definition) of file board.h is not documented.
|
||||
warning: Member LED0G_PIN (macro definition) of file board.h is not documented.
|
||||
warning: Member LED0 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member LED0R_PIN (macro definition) of file board.h is not documented.
|
||||
warning: Member LED1_BIT (macro definition) of file board.h is not documented.
|
||||
warning: Member LED1B_PIN (macro definition) of file board.h is not documented.
|
||||
warning: Member LED1G_PIN (macro definition) of file board.h is not documented.
|
||||
warning: Member LED1 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member LED1R_PIN (macro definition) of file board.h is not documented.
|
||||
warning: Member LED2_BIT (macro definition) of file board.h is not documented.
|
||||
warning: Member LED_ALL_OFF (macro definition) of file board.h is not documented.
|
||||
@ -3330,7 +3304,6 @@ warning: Member LORA_RESET_ON (macro definition) of file board.h is not document
|
||||
warning: Member LORA_RESET_PIN (macro definition) of file board.h is not documented.
|
||||
warning: Member LORA_RESET_PORT (macro definition) of file board.h is not documented.
|
||||
warning: Member LORA_RESET_TOGGLE (macro definition) of file board.h is not documented.
|
||||
warning: Member LOW_BAT_MON (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member LPD8808_PARAM_LED_CNT (macro definition) of file lpd8808_params.h is not documented.
|
||||
warning: Member LPD8808_PARAM_PIN_CLK (macro definition) of file lpd8808_params.h is not documented.
|
||||
warning: Member LPD8808_PARAM_PIN_DAT (macro definition) of file lpd8808_params.h is not documented.
|
||||
@ -4194,7 +4167,6 @@ warning: Member MEAS_OSRS_P_POS (macro definition) of file bmx280_internals.h is
|
||||
warning: Member MEAS_OSRS_T_POS (macro definition) of file bmx280_internals.h is not documented.
|
||||
warning: Member MEM_ALIGNMENT (macro definition) of group pkg_lwip_opts is not documented.
|
||||
warning: Member MEMP_MEM_MALLOC (macro definition) of group pkg_lwip_opts is not documented.
|
||||
warning: Member MEM_PW (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member MEM_SIZE (macro definition) of group pkg_lwip_opts is not documented.
|
||||
warning: Member M_GPIO2_PIN (macro definition) of group boards_ublox-c030-u201 is not documented.
|
||||
warning: Member M_GPIO3_PIN (macro definition) of group boards_ublox-c030-u201 is not documented.
|
||||
@ -5149,27 +5121,21 @@ warning: Member MULLE_VBAT_ADC_LINE (macro definition) of file board.h is not do
|
||||
warning: Member MULLE_VCHR_ADC_LINE (macro definition) of file board.h is not documented.
|
||||
warning: Member MULTIPLY_DATA(data_raw, integration_time) (macro definition) of file tsl4531x_internals.h is not documented.
|
||||
warning: Member MUX0_ENABLE_PORT (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX_0 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member MUX0_OFF (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX0_ON (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX0_PIN (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX0_PORT (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX1_ENABLE_PORT (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX_1 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member MUX1_OFF (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX1_ON (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX1_PIN (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX1_PORT (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX_PW_ENABLE_PORT (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX_PW (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member MUX_PW_OFF (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX_PW_ON (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX_PW_PIN (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX_PW_PORT (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX_RX (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member MUX_TX (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member MUX_USB_XBEE_ENABLE_PORT (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX_USB_XBEE (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member MUX_USB_XBEE_OFF (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX_USB_XBEE_ON (macro definition) of file board.h is not documented.
|
||||
warning: Member MUX_USB_XBEE_PIN (macro definition) of file board.h is not documented.
|
||||
@ -5619,7 +5585,6 @@ warning: Member RADIO_TCXO_VCC_PIN (macro definition) of file board.h is not doc
|
||||
warning: Member RANDOM_NUMOF (macro definition) of file periph_conf.h is not documented.
|
||||
warning: Member ra_OFFSET (macro definition) of file context_frame.h is not documented.
|
||||
warning: Member R_COEF_IF (macro definition) of file tcs37727-internal.h is not documented.
|
||||
warning: Member RDY_ACC (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member RECHARGECFG_ADAPTIVE_EN (macro definition) of file cc26x0_cc13x0_prcm.h is not documented.
|
||||
warning: Member RECHARGECFG_C1_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented.
|
||||
warning: Member RECHARGECFG_C2_mask (macro definition) of file cc26x0_cc13x0_prcm.h is not documented.
|
||||
@ -5914,11 +5879,8 @@ warning: Member RR_RDLENGTH_LENGTH (macro definition) of group net_dns is not do
|
||||
warning: Member RR_TTL_LENGTH (macro definition) of group net_dns is not documented.
|
||||
warning: Member RR_TYPE_LENGTH (macro definition) of group net_dns is not documented.
|
||||
warning: Member _RS(list) (macro definition) of group sys_ut is not documented.
|
||||
warning: Member RST_RTC (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member RTC_DEV (macro definition) of file cfg_rtc_default.h is not documented.
|
||||
warning: Member RTC_LOAD_CAP_BITS (macro definition) of file periph_conf.h is not documented.
|
||||
warning: Member RTC_PW (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member RTC_SLEEP (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member RTT_CLOCK_FREQUENCY (macro definition) of file cfg_rtt_default.h is not documented.
|
||||
warning: Member RTT_CLOCK_FREQUENCY (macro definition) of file periph_cpu.h is not documented.
|
||||
warning: Member RTT_DEV (macro definition) of file cfg_rtt_default.h is not documented.
|
||||
@ -6060,8 +6022,6 @@ warning: Member SD_DATA_TOKEN_CMD_25_STOP (macro definition) of file sdcard_spi_
|
||||
warning: Member SDEFAULT (macro definition) of file ColorTextColors.h is not documented.
|
||||
warning: Member SD_GET_CSD_STRUCTURE(CSD_RAW_DATA) (macro definition) of file sdcard_spi_internal.h is not documented.
|
||||
warning: Member SD_INVALID_R1_RESPONSE (macro definition) of file sdcard_spi_internal.h is not documented.
|
||||
warning: Member SD_MISO (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member SD_MOSI (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member SDP31_PRODUCT_NO_BYTE_0 (macro definition) of file sdp3x_params.h is not documented.
|
||||
warning: Member SDP31_PRODUCT_NO_BYTE_1 (macro definition) of file sdp3x_params.h is not documented.
|
||||
warning: Member SDP31_PRODUCT_NO_BYTE_3 (macro definition) of file sdp3x_params.h is not documented.
|
||||
@ -6076,7 +6036,6 @@ warning: Member SDP3X_PARAM_IRQ_PIN (macro definition) of file sdp3x_params.h is
|
||||
warning: Member SDP3X_PARAMS (macro definition) of file sdp3x_params.h is not documented.
|
||||
warning: Member SDP3X_SAUL_INFO (macro definition) of file sdp3x_params.h is not documented.
|
||||
warning: Member SD_POWERSEQUENCE_CLOCK_COUNT (macro definition) of file sdcard_spi_internal.h is not documented.
|
||||
warning: Member SD_PRESENT (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member SD_R1_RESPONSE_ADDR_ERROR (macro definition) of file sdcard_spi_internal.h is not documented.
|
||||
warning: Member SD_R1_RESPONSE_CMD_CRC_ERROR (macro definition) of file sdcard_spi_internal.h is not documented.
|
||||
warning: Member SD_R1_RESPONSE_ERASE_RESET (macro definition) of file sdcard_spi_internal.h is not documented.
|
||||
@ -6123,10 +6082,8 @@ warning: Member SDS011_PARAM_UART_DEV (macro definition) of file sds011_params.h
|
||||
warning: Member SDS011_RCMDID_DATA (macro definition) of file sds011_internal.h is not documented.
|
||||
warning: Member SDS011_RCMDID_REPLY (macro definition) of file sds011_internal.h is not documented.
|
||||
warning: Member SDS011_SAUL_INFO (macro definition) of file sds011_params.h is not documented.
|
||||
warning: Member SD_SCK (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member SD_SIZE_OF_CID_AND_CSD_REG (macro definition) of file sdcard_spi_internal.h is not documented.
|
||||
warning: Member SD_SIZE_OF_SD_STATUS (macro definition) of file sdcard_spi_internal.h is not documented.
|
||||
warning: Member SD_SS (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member SEESAW_SOIL_MANUFACTURER_ID (macro definition) of file seesaw_soil_regs.h is not documented.
|
||||
warning: Member SEESAW_SOIL_MID_VALUE (macro definition) of file seesaw_soil_regs.h is not documented.
|
||||
warning: Member SEESAW_SOIL_MOISTURE (macro definition) of file seesaw_soil_regs.h is not documented.
|
||||
@ -6137,8 +6094,6 @@ warning: Member SEESAW_SOIL_RST (macro definition) of file seesaw_soil_regs.h is
|
||||
warning: Member SEESAW_SOIL_SAUL_INFO (macro definition) of file seesaw_soil_params.h is not documented.
|
||||
warning: Member SEESAW_SOIL_TEMPERATURE (macro definition) of file seesaw_soil_regs.h is not documented.
|
||||
warning: Member sem_spi (variable) of file uwb_dw1000_params.h is not documented.
|
||||
warning: Member SENS_PW_3V3 (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member SENS_PW_5V (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member SERPENTE_NOR_FLAGS (macro definition) of file board.h is not documented.
|
||||
warning: Member SERPENTE_NOR_PAGE_SIZE (macro definition) of file board.h is not documented.
|
||||
warning: Member SERPENTE_NOR_PAGES_PER_SECTOR (macro definition) of file board.h is not documented.
|
||||
@ -6465,7 +6420,6 @@ warning: Member SOC_ADC_ADCCON3_EREF (macro definition) of file periph_conf.h is
|
||||
warning: Member SOCK_DNS_MAX_NAME_LEN (macro definition) of group net_sock_dns is not documented.
|
||||
warning: Member SOCK_DNS_PORT (macro definition) of group net_sock_dns is not documented.
|
||||
warning: Member SOCK_DNS_RETRIES (macro definition) of group net_sock_dns is not documented.
|
||||
warning: Member SOCKET0_SS (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member SOFT_SPI_PARAM_CLK (macro definition) of file soft_spi_params.h is not documented.
|
||||
warning: Member SOFT_SPI_PARAM_MISO (macro definition) of file soft_spi_params.h is not documented.
|
||||
warning: Member SOFT_SPI_PARAM_MOSI (macro definition) of file soft_spi_params.h is not documented.
|
||||
@ -8112,8 +8066,6 @@ warning: Member USB_HID_REQUEST_SET_PROTOCOL (macro definition) of group usb_hid
|
||||
warning: Member USB_HID_REQUEST_SET_REPORT (macro definition) of group usb_hid is not documented.
|
||||
warning: Member USB_HID_SUBCLASS_BOOT (macro definition) of group usb_hid is not documented.
|
||||
warning: Member USB_HID_SUBCLASS_NONE (macro definition) of group usb_hid is not documented.
|
||||
warning: Member USB_XBEE_RX (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member USB_XBEE_TX (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member UUID_VERSION_MASK (macro definition) of group sys_uuid is not documented.
|
||||
warning: Member VCC33 (macro definition) of file board.h is not documented.
|
||||
warning: Member VCNL40X0_AMBIENT_MASK_PARA_AUTO_OFFSET (macro definition) of file vcnl40x0_internals.h is not documented.
|
||||
@ -8251,14 +8203,11 @@ warning: Member XBEE2_EN_MODE (macro definition) of file board.h is not document
|
||||
warning: Member XBEE2_EN_PIN (macro definition) of file board.h is not documented.
|
||||
warning: Member XBEE2_EN_PORT (macro definition) of file board.h is not documented.
|
||||
warning: Member XBEE2_INT_PIN (macro definition) of file board.h is not documented.
|
||||
warning: Member XBEE_MON (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member XBEE_PARAM_BR (macro definition) of file xbee_params.h is not documented.
|
||||
warning: Member XBEE_PARAM_PIN_RESET (macro definition) of file xbee_params.h is not documented.
|
||||
warning: Member XBEE_PARAM_PIN_SLEEP (macro definition) of file xbee_params.h is not documented.
|
||||
warning: Member XBEE_PARAMS (macro definition) of file xbee_params.h is not documented.
|
||||
warning: Member XBEE_PARAM_UART (macro definition) of file xbee_params.h is not documented.
|
||||
warning: Member XBEE_PW (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member XBEE_SLEEP (macro definition) of file waspmote_pinmap.h is not documented.
|
||||
warning: Member xl320_baudrate_t (enumeration) of file dynamixel_protocol.h is not documented.
|
||||
warning: Member xl320_register16_t (enumeration) of file dynamixel_protocol.h is not documented.
|
||||
warning: Member xl320_register8_t (enumeration) of file dynamixel_protocol.h is not documented.
|
||||
|
||||
@ -45,7 +45,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -36,7 +36,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -37,7 +37,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -29,7 +29,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -36,7 +36,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -54,7 +54,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -57,7 +57,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -37,7 +37,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -37,7 +37,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -33,7 +33,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -58,7 +58,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -38,7 +38,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -66,7 +66,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
weio \
|
||||
yunjia-nrf51822 \
|
||||
|
||||
@ -40,7 +40,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -33,7 +33,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -28,7 +28,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -53,7 +53,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -30,7 +30,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -39,7 +39,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -25,6 +25,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f0discovery \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
@ -22,6 +22,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f0discovery \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
@ -35,7 +35,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -32,7 +32,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -68,7 +68,6 @@ LOW_MEMORY_BOARDS += \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
wemos-zero \
|
||||
yarm \
|
||||
yunjia-nrf51822 \
|
||||
|
||||
@ -68,7 +68,6 @@ LOW_MEMORY_BOARDS += \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
wemos-zero \
|
||||
yarm \
|
||||
yunjia-nrf51822 \
|
||||
|
||||
@ -24,5 +24,4 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f030f4-demo \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
waspmote-pro \
|
||||
#
|
||||
|
||||
@ -45,7 +45,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f7508-dk \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
wsn430-v1_3b \
|
||||
wsn430-v1_4 \
|
||||
z1 \
|
||||
|
||||
@ -16,6 +16,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
samd10-xmini \
|
||||
stk3200 \
|
||||
stm32f030f4-demo \
|
||||
waspmote-pro \
|
||||
zigduino \
|
||||
#
|
||||
|
||||
@ -27,5 +27,4 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
#
|
||||
|
||||
@ -25,5 +25,4 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f030f4-demo \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
waspmote-pro \
|
||||
#
|
||||
|
||||
@ -12,10 +12,6 @@ include ../Makefile.drivers_common
|
||||
USEMODULE += ws281x
|
||||
USEMODULE += xtimer
|
||||
|
||||
# Only AVR boards CPU clocked at 8MHz or 16 MHz are supported. The Waspmote Pro
|
||||
# is clocked at 14.7456 MHz :-/
|
||||
BOARD_BLACKLIST := waspmote-pro
|
||||
|
||||
EXTERNAL_BOARD_DIRS += $(RIOTBASE)/tests/build_system/external_board_dirs/esp-ci-boards
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
||||
@ -60,7 +60,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -52,7 +52,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -49,7 +49,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -52,7 +52,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -38,7 +38,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -67,7 +67,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -47,7 +47,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -36,7 +36,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -37,7 +37,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
thingy52 \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -47,7 +47,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -31,7 +31,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -21,7 +21,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f030f4-demo \
|
||||
stm32g0316-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -28,7 +28,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -30,7 +30,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -22,6 +22,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f0discovery \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
@ -23,6 +23,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
@ -68,7 +68,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -31,6 +31,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
@ -36,7 +36,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -33,6 +33,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
@ -37,7 +37,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
thingy52 \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -37,7 +37,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -47,7 +47,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -49,7 +49,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -48,7 +48,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -54,7 +54,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -28,7 +28,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -31,7 +31,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
thingy52 \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -47,7 +47,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -41,7 +41,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -20,7 +20,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f030f4-demo \
|
||||
stm32g0316-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -42,7 +42,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -45,7 +45,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -52,7 +52,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -23,6 +23,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f0discovery \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
@ -35,7 +35,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -32,7 +32,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -22,6 +22,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f0discovery \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
@ -24,6 +24,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
@ -27,6 +27,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
@ -28,6 +28,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f0discovery \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
@ -30,7 +30,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -33,7 +33,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -44,7 +44,6 @@ BOARDS_TIMER_SYSCLK := \
|
||||
openmote-cc2538 \
|
||||
remote-reva \
|
||||
remote-revb \
|
||||
waspmote-pro \
|
||||
#
|
||||
|
||||
ifneq (,$(filter $(BOARDS_TIMER_500kHz),$(BOARD)))
|
||||
|
||||
@ -31,6 +31,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
sipeed-longan-nano \
|
||||
sipeed-longan-nano-tft \
|
||||
stm32f7508-dk \
|
||||
waspmote-pro \
|
||||
zigduino \
|
||||
#
|
||||
|
||||
@ -22,6 +22,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f0discovery \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
@ -28,7 +28,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
wsn430-v1_3b \
|
||||
wsn430-v1_4 \
|
||||
|
||||
@ -26,7 +26,6 @@ BOARD_BLACKLIST := arduino-duemilanove \
|
||||
stm32f0discovery \
|
||||
stm32f3discovery \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
z1 \
|
||||
#
|
||||
|
||||
|
||||
@ -6,7 +6,6 @@ BOARD_WITHOUT_LORAMAC_RX := \
|
||||
arduino-mega2560 \
|
||||
i-nucleo-lrwan1 \
|
||||
stm32f0discovery \
|
||||
waspmote-pro \
|
||||
|
||||
LORA_DRIVER ?= sx1276
|
||||
LORA_REGION ?= EU868
|
||||
|
||||
@ -27,7 +27,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
#
|
||||
|
||||
@ -67,7 +67,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32l0538-disco \
|
||||
stm32mp157c-dk2 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
yunjia-nrf51822 \
|
||||
z1 \
|
||||
|
||||
@ -23,6 +23,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f0discovery \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
@ -12,6 +12,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
samd10-xmini \
|
||||
stk3200 \
|
||||
stm32f030f4-demo \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
@ -26,7 +26,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f030f4-demo \
|
||||
stm32g0316-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -26,7 +26,6 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f030f4-demo \
|
||||
stm32g0316-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
z1 \
|
||||
zigduino \
|
||||
|
||||
@ -22,6 +22,5 @@ BOARD_INSUFFICIENT_MEMORY := \
|
||||
stm32f0discovery \
|
||||
stm32g0316-disco \
|
||||
stm32l0538-disco \
|
||||
waspmote-pro \
|
||||
weact-g030f6 \
|
||||
#
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user