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

81 lines
2.0 KiB
C

/*
* Copyright (C) 2017 DAI Labor Technische 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_firefly
* @brief Support for the Firefly board
* @{
*
* @file
* @brief Board specific definitions for the Firefly board
*
* @author Anon Mall <anon.mall@gt-arc.com>
*/
#ifndef BOARD_H
#define BOARD_H
#include "cpu.h"
#include "board_common.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @name LED pin definitions
* @{
*/
#define LED0_PIN GPIO_PIN(PORT_D, 5)
#define LED0_MASK (1 << 5)
#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_PIN GPIO_PIN(PORT_D, 4)
#define LED1_MASK (1 << 4)
#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_PIN GPIO_PIN(PORT_D, 3)
#define LED2_MASK (1 << 3)
#define LED2_ON (GPIO_D->DATA |= LED2_MASK)
#define LED2_OFF (GPIO_D->DATA &= ~LED2_MASK)
#define LED2_TOGGLE (GPIO_D->DATA ^= LED2_MASK)
/** @} */
/**
* @name User button pin definition
* @{
*/
#define BTN0_PIN GPIO_PIN(PORT_A, 3)
#define BTN0_MODE GPIO_IN_PU
/** @} */
/**
* @name CC1200 SPI and pins definitions
* @{
*/
#define CC1200_SPI_DEV SSI0
#define CC1200_MOSI_GPIO GPIO_PIN(PORT_B, 1)
#define CC1200_MISO_GPIO GPIO_PIN(PORT_B, 3)
#define CC1200_SCLK_GPIO GPIO_PIN(PORT_B, 2)
#define CC1200_CSN_GPIO GPIO_PIN(PORT_B, 5)
#define CC1200_RESET_GPIO GPIO_PIN(PORT_C, 7)
#define CC1200_GPD0_GPIO GPIO_PIN(PORT_B, 4)
#define CC1200_GPD2_GPIO GPIO_PIN(PORT_B, 0)
/** @} */
#ifdef __cplusplus
} /* end extern "C" */
#endif
#endif /* BOARD_H */
/** @} */