/* * Copyright (C) 2018 Otto-von-Guericke-Universität Magdeburg * * 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 drivers_cc110x * @{ * * @file * @brief cc110x board specific configuration * * @author Marian Buschsieweke */ #ifndef CC110X_PARAMS_H #define CC110X_PARAMS_H #include "board.h" #include "cc110x_settings.h" #ifdef __cplusplus extern "C" { #endif /** * @name Default parameters for the cc110x driver * * These values are based on the msba2 board * @{ */ #ifndef CC110X_PARAM_SPI #define CC110X_PARAM_SPI SPI_DEV(0) #endif #ifndef CC110X_PARAM_CS #define CC110X_PARAM_CS GPIO_PIN(1, 21) #endif #ifndef CC110X_PARAM_GDO0 #define CC110X_PARAM_GDO0 GPIO_PIN(0, 27) #endif #ifndef CC110X_PARAM_GDO2 #define CC110X_PARAM_GDO2 GPIO_PIN(0, 28) #endif #ifndef CC110X_PARAM_SPI_CLOCK #define CC110X_PARAM_SPI_CLOCK SPI_CLK_5MHZ #endif #ifndef CC110X_PARAM_L2ADDR #define CC110X_PARAM_L2ADDR CC110X_L2ADDR_AUTO #endif #ifndef CC110X_PARAM_PATABLE #define CC110X_PARAM_PATABLE (&cc110x_patable_868mhz) #endif #ifndef CC110X_PARAM_CONFIG #define CC110X_PARAM_CONFIG NULL #endif #ifndef CC110X_PARAM_CHANNELS #define CC110X_PARAM_CHANNELS (&cc110x_chanmap_868mhz_lora) #endif #ifndef CC110X_PARAMS #define CC110X_PARAMS { \ .spi = CC110X_PARAM_SPI, \ .spi_clk = CC110X_PARAM_SPI_CLOCK, \ .cs = CC110X_PARAM_CS, \ .gdo0 = CC110X_PARAM_GDO0, \ .gdo2 = CC110X_PARAM_GDO2, \ .l2addr = CC110X_PARAM_L2ADDR, \ .patable = CC110X_PARAM_PATABLE, \ .config = CC110X_PARAM_CONFIG, \ .channels = CC110X_PARAM_CHANNELS, \ } #endif /** @} */ /** * @name CC110X configuration * @brief Specifies the SPI bus and GPIOs connected to the CC110X transceiver */ static const cc110x_params_t cc110x_params[] = { CC110X_PARAMS }; #ifdef __cplusplus } #endif #endif /* CC110X_PARAMS_H */ /** @} */