mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
61 lines
1.3 KiB
C
61 lines
1.3 KiB
C
/*
|
|
* 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 SPI configuration for the RE-Mote board revision A
|
|
*
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
* @author Antonio Lignan <alinan@zolertia.com>
|
|
* @author Sebastian Meiling <s@mlng.net>
|
|
*/
|
|
|
|
#ifndef CFG_SPI_DEFAULT_H
|
|
#define CFG_SPI_DEFAULT_H
|
|
|
|
#include "periph_cpu.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @name SPI configuration
|
|
* @{
|
|
*/
|
|
static const spi_conf_t spi_config[] = {
|
|
{
|
|
.num = 0,
|
|
.mosi_pin = GPIO_PIN(PORT_B, 1),
|
|
.miso_pin = GPIO_PIN(PORT_B, 3),
|
|
.sck_pin = GPIO_PIN(PORT_B, 2),
|
|
.cs_pin = GPIO_PIN(PORT_B, 5)
|
|
},
|
|
{
|
|
.num = 1,
|
|
.mosi_pin = GPIO_PIN(PORT_C, 5),
|
|
.miso_pin = GPIO_PIN(PORT_C, 6),
|
|
.sck_pin = GPIO_PIN(PORT_C, 4),
|
|
.cs_pin = GPIO_PIN(PORT_A, 7)
|
|
}
|
|
};
|
|
|
|
#define SPI_NUMOF ARRAY_SIZE(spi_config)
|
|
/** @} */
|
|
|
|
#ifdef __cplusplus
|
|
} /* end extern "C" */
|
|
#endif
|
|
|
|
#endif /* CFG_SPI_DEFAULT_H */
|
|
/** @} */
|