sr: Doxygen comments for loglevels.

This commit is contained in:
Uwe Hermann 2012-02-08 22:08:55 +01:00
parent 0ae67ff784
commit 12f3e8741b
1 changed files with 6 additions and 6 deletions

View File

@ -66,12 +66,12 @@ extern "C" {
#define SR_HZ_TO_NS(n) (1000000000 / (n))
/* libsigrok loglevels. */
#define SR_LOG_NONE 0
#define SR_LOG_ERR 1
#define SR_LOG_WARN 2
#define SR_LOG_INFO 3
#define SR_LOG_DBG 4
#define SR_LOG_SPEW 5
#define SR_LOG_NONE 0 /**< Output no messages at all. */
#define SR_LOG_ERR 1 /**< Output error messages. */
#define SR_LOG_WARN 2 /**< Output warnings. */
#define SR_LOG_INFO 3 /**< Output informational messages. */
#define SR_LOG_DBG 4 /**< Output debug messages. */
#define SR_LOG_SPEW 5 /**< Output very noisy debug messages. */
/*
* Use SR_API to mark public API symbols, and SR_PRIV for private symbols.