From 3ac31d0bdd7c306bd7562d672e1721839411c058 Mon Sep 17 00:00:00 2001 From: David Antliff Date: Sun, 6 Aug 2017 12:21:54 +1200 Subject: [PATCH] Avoid autogenerated docs for Scratchpad struct. --- main/ds18b20.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/ds18b20.c b/main/ds18b20.c index b84a0ad..1a0d672 100644 --- a/main/ds18b20.c +++ b/main/ds18b20.c @@ -59,7 +59,7 @@ static const int T_CONV = 750; // maximum conversion time at 12-bit resolution #define DS18B20_FUNCTION_EEPROM_RECALL 0xB8 #define DS18B20_FUNCTION_POWER_SUPPLY_READ 0xB4 - +/// @cond ignore typedef struct { uint8_t temperature[2]; // [0] is LSB, [1] is MSB @@ -69,6 +69,7 @@ typedef struct uint8_t reserved[3]; uint8_t crc; } Scratchpad; +/// @endcond ignore static void _init(DS18B20_Info * ds18b20_info, OneWireBus * bus) {