From 11771f889c75c6f9d78e69d1fc0ffe22cf451604 Mon Sep 17 00:00:00 2001 From: temi54c1l8 Date: Wed, 26 Jun 2024 11:45:23 +0200 Subject: [PATCH] CO_fifo: fix doxygen documentation comments --- 301/CO_fifo.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/301/CO_fifo.h b/301/CO_fifo.h index 61a843f..6f68d9b 100644 --- a/301/CO_fifo.h +++ b/301/CO_fifo.h @@ -477,13 +477,13 @@ size_t CO_fifo_readB642a(CO_fifo_t *fifo, char *buf, size_t count, bool_t end); * @defgroup uint8_t Bitfields for status argument from CO_fifo_cpyTok2U8 function and similar * @{ */ -#define CO_fifo_st_closed 0x01U /** Bit is set, if command delimiter is reached in src */ -#define CO_fifo_st_partial 0x02U /** Bit is set, if copy was partial and more data are available. If unset and no error, then all data was successfully copied. */ -#define CO_fifo_st_errTok 0x10U /** Bit is set, if no valid token found */ -#define CO_fifo_st_errVal 0x20U /** Bit is set, if value is not valid or out of limits */ -#define CO_fifo_st_errBuf 0x40U /** Bit is set, if destination buffer is to small */ -#define CO_fifo_st_errInt 0x80U /** Bit is set, if internal error */ -#define CO_fifo_st_errMask 0xF0U /** Bitmask for error bits */ +#define CO_fifo_st_closed 0x01U /**< Bit is set, if command delimiter is reached in src */ +#define CO_fifo_st_partial 0x02U /**< Bit is set, if copy was partial and more data are available. If unset and no error, then all data was successfully copied. */ +#define CO_fifo_st_errTok 0x10U /**< Bit is set, if no valid token found */ +#define CO_fifo_st_errVal 0x20U /**< Bit is set, if value is not valid or out of limits */ +#define CO_fifo_st_errBuf 0x40U /**< Bit is set, if destination buffer is to small */ +#define CO_fifo_st_errInt 0x80U /**< Bit is set, if internal error */ +#define CO_fifo_st_errMask 0xF0U /**< Bitmask for error bits */ /** @} */ /* uint8_t */ /**