Fix "UNUSED" redefined warning on HAL_STM32 (#14342)
This commit is contained in:
parent
4b365552db
commit
81d550754a
@ -57,7 +57,11 @@
|
|||||||
|
|
||||||
// Remove compiler warning on an unused variable
|
// Remove compiler warning on an unused variable
|
||||||
#ifndef UNUSED
|
#ifndef UNUSED
|
||||||
#define UNUSED(x) ((void)(x))
|
#if defined(ARDUINO_ARCH_STM32) && !defined(STM32GENERIC)
|
||||||
|
#define UNUSED(X) (void)X
|
||||||
|
#else
|
||||||
|
#define UNUSED(x) ((void)(x))
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Macros to make a string from a macro
|
// Macros to make a string from a macro
|
||||||
|
Loading…
Reference in New Issue
Block a user