1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/remote-pa/include/board.h
2022-02-25 15:08:58 +01:00

82 lines
2.0 KiB
C

/*
* 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.
*/
/**
* @ingroup boards_remote-pa
* @{
*
* @file
* @brief Board specific definitions for the Re-Mote board prototype A
*
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
* @author Antonio Lignan <alinan@zolertia.com>
* @author Sebastian Meiling <s@mlng.net>
*/
#ifndef BOARD_H
#define BOARD_H
#include "cpu.h"
#include "board_common.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @name LED pin definitions and handlers
* @{
*/
#define LED0_PIN GPIO_PIN(3, 2)
#define LED1_PIN GPIO_PIN(3, 5)
#define LED2_PIN GPIO_PIN(2, 3)
#define LED0_MASK (1 << 2)
#define LED1_MASK (1 << 5)
#define LED2_MASK (1 << 3)
#define LED0_ON (GPIO_D->DATA &= ~LED0_MASK)
#define LED0_OFF (GPIO_D->DATA |= LED0_MASK)
#define LED0_TOGGLE (GPIO_D->DATA ^= LED0_MASK)
#define LED1_ON (GPIO_D->DATA &= ~LED1_MASK)
#define LED1_OFF (GPIO_D->DATA |= LED1_MASK)
#define LED1_TOGGLE (GPIO_D->DATA ^= LED1_MASK)
#define LED2_ON (GPIO_C->DATA &= ~LED2_MASK)
#define LED2_OFF (GPIO_C->DATA |= LED2_MASK)
#define LED2_TOGGLE (GPIO_C->DATA ^= LED2_MASK)
/** @} */
/**
* @name User button pin definition
* @{
*/
#define BTN0_PIN GPIO_PIN(0, 3)
#define BTN0_MODE GPIO_IN_PU
/** @} */
/**
* @name Radio configuration
*
* 2.4GHz RF switch controlled by SW
* @{
*/
#define RF_SWITCH_GPIO GPIO_PIN(3, 4)
#define RF_SWITCH_SUB_GHZ gpio_set(RF_SWITCH_GPIO)
#define RF_SWITCH_2_4_GHZ gpio_clear(RF_SWITCH_GPIO)
#define RF_SWITCH_TOGGLE gpio_toggle(RF_SWITCH_GPIO)
/** @} */
#ifdef __cplusplus
} /* end extern "C" */
#endif
#endif /* BOARD_H */
/** @} */