diff options
Diffstat (limited to 'os/hal/src/hal.c')
-rw-r--r-- | os/hal/src/hal.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/os/hal/src/hal.c b/os/hal/src/hal.c index 1bfa7550f..42b926619 100644 --- a/os/hal/src/hal.c +++ b/os/hal/src/hal.c @@ -131,6 +131,9 @@ void halInit(void) { #if (HAL_USE_WDG == TRUE) || defined(__DOXYGEN__)
wdgInit();
#endif
+#if (HAL_USE_WSPI == TRUE) || defined(__DOXYGEN__)
+ wspiInit();
+#endif
/* Community driver overlay initialization.*/
#if defined(HAL_USE_COMMUNITY) || defined(__DOXYGEN__)
|