mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
62 lines
1.3 KiB
C
62 lines
1.3 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
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Peripheral MCU configuration for the Firefly board revision A
|
|
*
|
|
* @author Anon Mall <anon.mall@gt-arc.com>
|
|
*/
|
|
|
|
#ifndef PERIPH_CONF_H
|
|
#define PERIPH_CONF_H
|
|
|
|
#include "cfg_adc_default.h"
|
|
#include "cfg_clk_default.h"
|
|
#include "cfg_i2c_default.h"
|
|
#include "cfg_timer_default.h"
|
|
#include "cfg_uart_default.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 = SPI_CS_UNDEF,
|
|
},
|
|
{
|
|
.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 /* PERIPH_CONF_H */
|
|
/** @} */
|