Skip to content
Snippets Groups Projects
Unverified Commit 6284766e authored by Martine Lenders's avatar Martine Lenders Committed by GitHub
Browse files

Merge pull request #8705 from aabadie/boards/params/mulle

boards/mulle: fix driver params usage
parents 6aa88d99 942b0dd0
Branches
No related tags found
No related merge requests found
...@@ -108,24 +108,22 @@ void board_init(void); ...@@ -108,24 +108,22 @@ void board_init(void);
* @todo Work around missing RESET pin on Mulle v0.6x * @todo Work around missing RESET pin on Mulle v0.6x
* *
* {spi bus, spi speed, cs pin, int pin, reset pin, sleep pin} * {spi bus, spi speed, cs pin, int pin, reset pin, sleep pin}
* @{
*/ */
#define AT86RF2XX_PARAMS_BOARD {.spi = SPI_DEV(0), \ #define AT86RF2XX_PARAM_CS SPI_HWCS(1)
.spi_clk = SPI_CLK_5MHZ, \ #define AT86RF2XX_PARAM_INT GPIO_PIN(PORT_B, 9)
.cs_pin = SPI_HWCS(1), \ #define AT86RF2XX_PARAM_SLEEP GPIO_PIN(PORT_E, 6)
.int_pin = GPIO_PIN(PORT_B, 9), \ #define AT86RF2XX_PARAM_RESET GPIO_PIN(PORT_C, 12)
.sleep_pin = GPIO_PIN(PORT_E, 6), \ /** @} */
.reset_pin = GPIO_PIN(PORT_C, 12)}
/** /**
* @name LIS3DH configuration * @name LIS3DH configuration
* @{ * @{
*/ */
#define LIS3DH_INT1 GPIO_PIN(PORT_C, 18) #define LIS3DH_PARAM_INT1 GPIO_PIN(PORT_C, 18)
#define LIS3DH_INT2 GPIO_PIN(PORT_C, 17) #define LIS3DH_PARAM_INT2 GPIO_PIN(PORT_C, 17)
#define LIS3DH_CS SPI_HWCS(0) #define LIS3DH_PARAM_CS SPI_HWCS(0)
#define LIS3DH_CLK SPI_CLK_5MHZ #define LIS3DH_PARAM_CLK (SPI_CLK_5MHZ)
#define LIS3DH_SPI SPI_DEV(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 */
/** @} */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment