From e03615fd38dbceb2cbebc8bb4309cf18c69a9d8c Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Thu, 9 Jan 2020 17:08:05 +0100 Subject: [PATCH] drivers/dht: Worked around doxygen bug Markdown in @retval values is currently broken in Doxygen. This removes use of markdown there --- drivers/include/dht.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/include/dht.h b/drivers/include/dht.h index 973453c5b9..9d7ec3abcc 100644 --- a/drivers/include/dht.h +++ b/drivers/include/dht.h @@ -107,10 +107,10 @@ int dht_init(dht_t *dev, const dht_params_t *params); * @param[out] temp temperature value [in °C * 10^-1] * @param[out] hum relative humidity value [in percent * 10^-1] * - * @retval `DHT_OK` Success - * @retval `DHT_NOCSUM` Checksum error - * @retval `DHT_TIMEOUT` Reading data timed out (check wires!) - * @retval `DHT_NODEV` Unsupported device type specified + * @retval DHT_OK Success + * @retval DHT_NOCSUM Checksum error + * @retval DHT_TIMEOUT Reading data timed out (check wires!) + * @retval DHT_NODEV Unsupported device type specified */ int dht_read(dht_t *dev, int16_t *temp, int16_t *hum);