From 5e97feb88e2d9cf1a8b154dcaff8137bfc03e2c0 Mon Sep 17 00:00:00 2001 From: Akshai M Date: Tue, 31 Mar 2020 22:49:37 +0530 Subject: [PATCH] drivers/include/dose.h : Compile Configs --- drivers/include/dose.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/drivers/include/dose.h b/drivers/include/dose.h index b46f263fb5..aefd5abae4 100644 --- a/drivers/include/dose.h +++ b/drivers/include/dose.h @@ -124,9 +124,21 @@ typedef enum { #define DOSE_OPT_PROMISCUOUS (BIT0) /**< Don't check the destination MAC - pass every frame to upper layers */ /** @} */ +/** + * @defgroup drivers_dose_config Differentially Operated Serial Ethernet (DOSE) driver compile configuration + * @ingroup config + * @{ + */ + +/** + * @brief Timeout that brings the driver back into idle state. + * + * Fallback to idle if the remote side died within a transaction. + */ #ifndef DOSE_TIMEOUT_USEC -#define DOSE_TIMEOUT_USEC (5000) /**< Timeout that brings the driver back into idle state if the remote side died within a transaction */ +#define DOSE_TIMEOUT_USEC (5000) #endif +/** @} */ #define DOSE_FRAME_CRC_LEN (2) /**< CRC16 is used */ #define DOSE_FRAME_LEN (ETHERNET_FRAME_LEN + DOSE_FRAME_CRC_LEN) /**< dose frame length */