Skip to content

Commit ff373ce

Browse files
committed
Fix doxygen identation on esp-idf example
1 parent 0cf448f commit ff373ce

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

examples/espidf/basic_usage/src/main.cpp

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
*/
113113
bool 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+
*/
127127
bool 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+
*/
153153
void 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+
*/
180180
void cli_interpreter(t_cli_result* cli_read)
181181
{
182182
// Show read result element

0 commit comments

Comments
 (0)