diff options
Diffstat (limited to 'os/hal/include/hal_pal.h')
-rw-r--r-- | os/hal/include/hal_pal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/os/hal/include/hal_pal.h b/os/hal/include/hal_pal.h index 251cf01ae..62a213142 100644 --- a/os/hal/include/hal_pal.h +++ b/os/hal/include/hal_pal.h @@ -147,6 +147,7 @@ */
typedef void (*palcallback_t)(void *arg);
+#if (PAL_USE_WAIT == TRUE) || (PAL_USE_CALLBACKS == TRUE) || defined(__DOXYGEN__)
/**
* @brief Type of a PAL event record.
*/
@@ -168,6 +169,7 @@ typedef struct { void *arg;
#endif
} palevent_t;
+#endif
#include "hal_pal_lld.h"
|