1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

boards/mulle: fix driver params usage

This commit is contained in:
Alexandre Abadie 2018-02-28 18:28:13 +01:00
parent 2e066e8693
commit 942b0dd064
2 changed files with 10 additions and 72 deletions

View File

@ -108,24 +108,22 @@ void board_init(void);
* @todo Work around missing RESET pin on Mulle v0.6x
*
* {spi bus, spi speed, cs pin, int pin, reset pin, sleep pin}
* @{
*/
#define AT86RF2XX_PARAMS_BOARD {.spi = SPI_DEV(0), \
.spi_clk = SPI_CLK_5MHZ, \
.cs_pin = SPI_HWCS(1), \
.int_pin = GPIO_PIN(PORT_B, 9), \
.sleep_pin = GPIO_PIN(PORT_E, 6), \
.reset_pin = GPIO_PIN(PORT_C, 12)}
#define AT86RF2XX_PARAM_CS SPI_HWCS(1)
#define AT86RF2XX_PARAM_INT GPIO_PIN(PORT_B, 9)
#define AT86RF2XX_PARAM_SLEEP GPIO_PIN(PORT_E, 6)
#define AT86RF2XX_PARAM_RESET GPIO_PIN(PORT_C, 12)
/** @} */
/**
* @name LIS3DH configuration
* @{
*/
#define LIS3DH_INT1 GPIO_PIN(PORT_C, 18)
#define LIS3DH_INT2 GPIO_PIN(PORT_C, 17)
#define LIS3DH_CS SPI_HWCS(0)
#define LIS3DH_CLK SPI_CLK_5MHZ
#define LIS3DH_SPI SPI_DEV(0)
#define LIS3DH_PARAM_INT1 GPIO_PIN(PORT_C, 18)
#define LIS3DH_PARAM_INT2 GPIO_PIN(PORT_C, 17)
#define LIS3DH_PARAM_CS SPI_HWCS(0)
#define LIS3DH_PARAM_CLK (SPI_CLK_5MHZ)
/** @} */
/**

View File

@ -1,60 +0,0 @@
/*
* Copyright (C) 2016 Eistec AB
*
* 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_mulle
* @{
*
* @file
* @brief LIS3DH board specific configuration
*
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
*/
#ifndef LIS3DH_PARAMS_H
#define LIS3DH_PARAMS_H
#include "board.h"
#include "saul_reg.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief LIS3DH configuration
*/
static const lis3dh_params_t lis3dh_params[] =
{
{
.spi = LIS3DH_SPI,
.clk = LIS3DH_CLK,
.cs = LIS3DH_CS,
.int1 = LIS3DH_INT1,
.int2 = LIS3DH_INT2,
.scale = 4,
.odr = LIS3DH_ODR_100Hz,
},
};
/**
* @brief Additional meta information to keep in the SAUL registry
*/
static const saul_reg_info_t lis3dh_saul_info[] =
{
{
.name = "lis3dh",
},
};
#ifdef __cplusplus
}
#endif
#endif /* LIS3DH_PARAMS_H */
/** @} */