X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fhw%2Fhw_led_7seg.h;h=56fa0bfb91566caa89f76689511670bd3bce705f;hb=b30ca67e54f665181d85a49bff3af2862e86601e;hp=b90397b773906bd0b11ddf3c9e0c8c9fa44878a8;hpb=a60956f41f4e7fe60562bdc158ed081291028483;p=bertos.git 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 */