From 8e2ac35b0a227fedb31ba974f04125cb7b608a50 Mon Sep 17 00:00:00 2001 From: lottaviano Date: Sat, 19 Mar 2011 15:24:44 +0000 Subject: [PATCH] Fix (more) doxygen warnings git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4784 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/hw/hw_led_7seg.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bertos/hw/hw_led_7seg.h b/bertos/hw/hw_led_7seg.h index b90397b7..56fa0bfb 100644 --- a/bertos/hw/hw_led_7seg.h +++ b/bertos/hw/hw_led_7seg.h @@ -202,8 +202,10 @@ INLINE void sseg_off(void) * \param dgt the character that has to be displayed * \param n_dgt the digit where to disply the character of the display's digits. */ -INLINE void sseg_on(UNUSED_ARG(uint8_t, dgt), UNUSED_ARG(uint8_t, n_dgt)) +INLINE void sseg_on(uint8_t dgt, uint8_t n_dgt) { + (void) dgt; + (void) n_dgt; #ifdef CONFIG_LED_7SEG_CCAT /* Common Cathode */ /* You have to implment it */ -- 2.25.1