diff options
Diffstat (limited to 'os/hal/platforms/Win32/hal_lld.c')
-rw-r--r-- | os/hal/platforms/Win32/hal_lld.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/os/hal/platforms/Win32/hal_lld.c b/os/hal/platforms/Win32/hal_lld.c index 31e2b9a87..e037c9c83 100644 --- a/os/hal/platforms/Win32/hal_lld.c +++ b/os/hal/platforms/Win32/hal_lld.c @@ -42,10 +42,12 @@ static LARGE_INTEGER slice; * @brief PAL setup.
* @details Digital I/O ports static configuration as defined in @p board.h.
*/
+#if CH_HAL_USE_PAL || defined(__DOXYGEN__)
const VIOConfig pal_default_config = {
{0, 0, 0},
{0, 0, 0}
};
+#endif
/*===========================================================================*/
/* Driver local functions. */
|