@@ -107,9 +107,9 @@ void app_main(void)
107107/* Secondary Functions */
108108
109109/* *
110- * @brief Setup and initialize device hardware.
111- * @return If all hardware has been successfully initialized (true/false).
112- */
110+ * @brief Setup and initialize device hardware.
111+ * @return If all hardware has been successfully initialized (true/false).
112+ */
113113bool init_hardware (void )
114114{
115115 // Set LED pin as digital output
@@ -121,9 +121,9 @@ bool init_hardware(void)
121121}
122122
123123/* *
124- * @brief Launch system Tasks Threads.
125- * @return If all thread has been successfully created (true/false).
126- */
124+ * @brief Launch system Tasks Threads.
125+ * @return If all thread has been successfully created (true/false).
126+ */
127127bool launch_threads (void )
128128{
129129 bool any_thread_fail = false ;
@@ -147,9 +147,9 @@ bool launch_threads(void)
147147/* CLI Task */
148148
149149/* *
150- * @brief Thread for Command Line Interface Interpreter.
151- * @param arg Thread input arguments.
152- */
150+ * @brief Thread for Command Line Interface Interpreter.
151+ * @param arg Thread input arguments.
152+ */
153153void th_cli_interpreter (void * arg)
154154{
155155 MINBASECLI Cli;
@@ -174,9 +174,9 @@ void th_cli_interpreter(void* arg)
174174}
175175
176176/* *
177- * @brief Command Line Interface Interpreter.
178- * @param cli_read CLI read result structure (t_cli_result).
179- */
177+ * @brief Command Line Interface Interpreter.
178+ * @param cli_read CLI read result structure (t_cli_result).
179+ */
180180void cli_interpreter (t_cli_result* cli_read)
181181{
182182 // Show read result element
0 commit comments