diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-22 17:26:17 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-22 17:26:17 +0200 |
commit | 3c2f4422e4dd90826a549c87d9d042c592806cb8 (patch) | |
tree | 15a56f851e10d0507f2ea5842044dafc38d2fa6a /main/init.h | |
parent | 3667d9a9955face0d4a147319cc902cbf8c95299 (diff) |
docs done
Diffstat (limited to 'main/init.h')
-rw-r--r-- | main/init.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/main/init.h b/main/init.h index 73d2773..a24977d 100644 --- a/main/init.h +++ b/main/init.h @@ -1,11 +1,17 @@ #pragma once /** - * \brief initialize the main controller + * \ingroup main + * \{ + */ + +/** + * \brief Initialize the main controller * * This function only synchronously initializes the standard input/output (used - * for `printf` and `panic`), and queues all other types of initialization in - * the `init` task using FreeRTOS. + * for \c printf() and \c panic()), and queues all other types of + * initialization in the \c async_init() task using FreeRTOS. */ void init(); +/// \} |