/* * Copyright (C) 2014 Freie 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. */ /** * @defgroup boards_msbiot MSB-IoT * @ingroup boards * @brief Board specific files for the MSB-IoT board * @{ * * @file * @brief Board specific definitions for the MSB-IoT board * * @author Fabian Nack */ #ifndef BOARD_H_ #define BOARD_H_ #include "cpu.h" #include "periph_conf.h" #ifdef __cplusplus extern "C" { #endif /** * @name Configure connected CC1101 (radio) device * @{ */ #define CC110X_SPI SPI_0 #define CC110X_CS GPIO_PIN(PORT_B, 12) #define CC110X_GDO0 GPIO_PIN(PORT_C, 4) #define CC110X_GDO1 GPIO_PIN(PORT_A, 6) #define CC110X_GDO2 GPIO_PIN(PORT_C, 5) /** @} */ /** * @name Configure connected MPU-9150 device * @{ */ #define MPU9150_I2C I2C_0 #define MPU9150_HW_ADDR (0x68) #define MPU9150_COMP_ADDR (0x0E) /** @} */ /** * @name LED pin definitions * @{ */ #define LED_PORT GPIOB #define LED_RED_PIN (1 << 8) #define LED_YELLOW_PIN (1 << 14) #define LED_GREEN_PIN (1 << 15) /** @} */ /** * @name Macros for controlling the on-board LEDs. * @{ */ #define LED_RED_ON (LED_PORT->BSRRH = LED_RED_PIN) #define LED_RED_OFF (LED_PORT->BSRRL = LED_RED_PIN) #define LED_RED_TOGGLE (LED_PORT->ODR ^= LED_RED_PIN) #define LED_YELLOW_ON (LED_PORT->BSRRH = LED_YELLOW_PIN) #define LED_YELLOW_OFF (LED_PORT->BSRRL = LED_YELLOW_PIN) #define LED_YELLOW_TOGGLE (LED_PORT->ODR ^= LED_YELLOW_PIN) #define LED_GREEN_ON (LED_PORT->BSRRH = LED_GREEN_PIN) #define LED_GREEN_OFF (LED_PORT->BSRRL = LED_GREEN_PIN) #define LED_GREEN_TOGGLE (LED_PORT->ODR ^= LED_GREEN_PIN) /** @} */ /** * @brief Initialize board specific hardware, including clock, LEDs and std-IO */ void board_init(void); #ifdef __cplusplus } #endif #endif /* BOARD_H_ */ /** @} */