From 1bf151f01fe5efd89a484fa1820ceb6a468b3d57 Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Fri, 25 Feb 2022 15:08:13 +0100 Subject: [PATCH] core/init: declare board_init() --- core/include/kernel_init.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/include/kernel_init.h b/core/include/kernel_init.h index 43b6076880..69ba87da93 100644 --- a/core/include/kernel_init.h +++ b/core/include/kernel_init.h @@ -51,6 +51,11 @@ extern "C" { */ void kernel_init(void); +/** + * @brief Initialize board specific hardware + */ +void board_init(void); + #ifdef __cplusplus } #endif