2017-09-05 16:07:23 +02:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2020-01-08 14:40:20 +01:00
|
|
|
#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"
|
2017-09-05 16:07:23 +02:00
|
|
|
|
|
|
|
#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),
|
2022-01-04 13:00:58 +01:00
|
|
|
.cs_pin = SPI_CS_UNDEF,
|
2017-09-05 16:07:23 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.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)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-07-18 15:14:29 +02:00
|
|
|
#define SPI_NUMOF ARRAY_SIZE(spi_config)
|
2017-09-05 16:07:23 +02:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* end extern "C" */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* PERIPH_CONF_H */
|
|
|
|
/** @} */
|