/* * Copyright (C) 2014-2016 Freie Universität Berlin * 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_common_remote * @{ * * @file * @brief Common default I2C configuration for the RE-Mote board revision A * * @author Hauke Petersen * @author Antonio Lignan * @author Sebastian Meiling */ #ifndef CFG_I2C_DEFAULT_H #define CFG_I2C_DEFAULT_H #include "periph_cpu.h" #ifdef __cplusplus extern "C" { #endif /** * @name I2C configuration * @{ */ #define I2C_IRQ_PRIO 1 static const i2c_conf_t i2c_config[] = { { .speed = I2C_SPEED_FAST, /**< bus speed */ .scl_pin = GPIO_PIN(PORT_C, 3), /**< GPIO_PC3 */ .sda_pin = GPIO_PIN(PORT_C, 2) /**< GPIO_PC2 */ }, }; #define I2C_NUMOF ARRAY_SIZE(i2c_config) /** @} */ #ifdef __cplusplus } /* end extern "C" */ #endif #endif /* CFG_I2C_DEFAULT_H */ /** @} */