From b4f70be9efdb7a4999d2362e4d1269dbc9ffef68 Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke <marian.buschsieweke@ovgu.de> Date: Thu, 24 May 2018 19:16:52 +0200 Subject: [PATCH] drivers: Fixed struct documentation for cc110x --- drivers/include/cc110x.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/include/cc110x.h b/drivers/include/cc110x.h index 17f02d2934..f915f8bfc0 100644 --- a/drivers/include/cc110x.h +++ b/drivers/include/cc110x.h @@ -33,11 +33,11 @@ extern "C" { * @brief Struct for holding cc110x IO parameters */ typedef struct cc110x_params { - spi_t spi; /**< what */ - gpio_t cs; /**< does */ - gpio_t gdo0; /**< this */ - gpio_t gdo1; /**< look */ - gpio_t gdo2; /**< like */ + spi_t spi; /**< SPI bus the CC110x is connected to */ + gpio_t cs; /**< GPIO connected to the chip select pin of the CC110x */ + gpio_t gdo0; /**< GPIO connected to the GDO0 pin of the CC110x */ + gpio_t gdo1; /**< GPIO connected to the GDO1 pin of the CC110x */ + gpio_t gdo2; /**< GPIO connected to the GDO2 pin of the CC110x */ } cc110x_params_t; /** -- GitLab