aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src/hal.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/src/hal.c')
-rw-r--r--os/hal/src/hal.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/os/hal/src/hal.c b/os/hal/src/hal.c
index 1aec1a478..b64ba49af 100644
--- a/os/hal/src/hal.c
+++ b/os/hal/src/hal.c
@@ -27,8 +27,13 @@
#include "ch.h"
#include "hal.h"
+/**
+ * @brief HAL initialization.
+ */
void halInit(void) {
+ hal_lld_init();
+
#if CH_HAL_USE_PAL
palInit(&pal_default_config);
#endif