2016-06-29 16:30:13 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Freie Universität Berlin
|
|
|
|
* Copyright (C) 2015 Zolertia SL
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2017-11-30 23:37:13 +01:00
|
|
|
* @defgroup boards_common_remote Zolertia Re-Mote common
|
|
|
|
* @ingroup boards_common
|
|
|
|
* @brief Shared files and configuration for all Zolertia Re-Mote boards.
|
2016-06-29 16:30:13 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Board specific definitions for the RE-Mote boards
|
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
* Antonio Lignan <alinan@zolertia.com>
|
|
|
|
*/
|
|
|
|
|
2017-03-13 23:54:03 +01:00
|
|
|
#ifndef BOARD_COMMON_H
|
|
|
|
#define BOARD_COMMON_H
|
2016-06-29 16:30:13 +02:00
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "periph/gpio.h"
|
|
|
|
#include "periph/spi.h"
|
2020-09-10 13:19:08 +02:00
|
|
|
#include "cc2538_eui_primary.h"
|
2016-06-29 16:30:13 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name Macros for controlling the on-board RGB LEDs
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define LED_ALL_OFF LED0_OFF; \
|
|
|
|
LED1_OFF; \
|
|
|
|
LED2_OFF
|
|
|
|
/* Output is color white */
|
|
|
|
#define LED_ALL_ON LED0_ON; \
|
|
|
|
LED1_ON; \
|
|
|
|
LED2_ON
|
|
|
|
|
|
|
|
/* Yellow */
|
|
|
|
#define LED3_ON LED2_OFF; \
|
|
|
|
LED0_ON; \
|
|
|
|
LED1_ON
|
|
|
|
#define LED3_OFF LED1_OFF; \
|
|
|
|
LED0_OFF
|
|
|
|
#define LED3_TOGGLE LED1_TOGGLE; \
|
|
|
|
LED0_TOGGLE
|
|
|
|
|
|
|
|
/* Purple */
|
|
|
|
#define LED4_ON LED1_OFF; \
|
|
|
|
LED2_ON; \
|
|
|
|
LED0_ON
|
|
|
|
#define LED4_OFF LED2_OFF; \
|
|
|
|
LED0_OFF
|
|
|
|
#define LED4_TOGGLE LED2_TOGGLE; \
|
|
|
|
LED0_TOGGLE
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name Flash Customer Configuration Area (CCA) parameters
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#ifndef UPDATE_CCA
|
|
|
|
#define UPDATE_CCA (1)
|
|
|
|
#endif
|
|
|
|
#define CCA_BACKDOOR_ENABLE (1)
|
|
|
|
#define CCA_BACKDOOR_PORT_A_PIN (3) /**< Select button */
|
|
|
|
#define CCA_BACKDOOR_ACTIVE_LEVEL (0) /**< Active low */
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name xtimer configuration
|
|
|
|
* @{
|
|
|
|
*/
|
2016-08-16 21:07:26 +02:00
|
|
|
#define XTIMER_WIDTH (16)
|
2016-06-29 16:30:13 +02:00
|
|
|
#define XTIMER_BACKOFF (50)
|
|
|
|
#define XTIMER_ISR_BACKOFF (40)
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* end extern "C" */
|
|
|
|
#endif
|
2017-03-13 23:54:03 +01:00
|
|
|
#endif /* BOARD_COMMON_H */
|
2016-06-29 16:30:13 +02:00
|
|
|
/** @} */
|