/* * SPDX-FileCopyrightText: 2014 Freie Universität Berlin * SPDX-License-Identifier: LGPL-2.1-only */ #pragma once /** * @ingroup boards_iotlab-a8-m3 * @{ * * @file * @brief Peripheral MCU configuration for the iotlab-a8-m3 board * * @author Thomas Eichinger * @author Hauke Petersen */ #include "periph_cpu.h" #include "periph_conf_common.h" #ifdef __cplusplus extern "C" { #endif /** * @name SPI configuration * @{ */ static const spi_conf_t spi_config[] = { { .dev = SPI2, .mosi_pin = GPIO_PIN(PORT_B, 15), .miso_pin = GPIO_PIN(PORT_B, 14), .sclk_pin = GPIO_PIN(PORT_B, 13), .cs_pin = SPI_CS_UNDEF, .rccmask = RCC_APB1ENR_SPI2EN, .apbbus = APB1 } }; #define SPI_NUMOF ARRAY_SIZE(spi_config) /** @} */ #ifdef __cplusplus } #endif /** @} */