mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-19 19:43:52 +01:00
87 lines
2.1 KiB
C
87 lines
2.1 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2014 Freie Universität Berlin
|
|
* SPDX-FileCopyrightText: 2015 Zolertia SL
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/**
|
|
* @defgroup boards_common_remote Zolertia Re-Mote common
|
|
* @ingroup boards_common
|
|
* @brief Shared files and configuration for all Zolertia Re-Mote boards.
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Board specific definitions for the RE-Mote boards
|
|
*
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
* Antonio Lignan <alinan@zolertia.com>
|
|
*/
|
|
|
|
#include "cpu.h"
|
|
#include "periph/gpio.h"
|
|
#include "periph/spi.h"
|
|
#include "cc2538_eui_primary.h"
|
|
|
|
#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
|
|
* @{
|
|
*/
|
|
#define XTIMER_WIDTH (16)
|
|
#define XTIMER_BACKOFF (50)
|
|
#define XTIMER_ISR_BACKOFF (40)
|
|
/** @} */
|
|
|
|
#ifdef __cplusplus
|
|
} /* end extern "C" */
|
|
#endif
|
|
/** @} */
|