Skip to content

Commit

Permalink
documentation: fixed warning doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
csouzapaz committed Jun 25, 2024
1 parent a7de034 commit b673e6a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 1 addition & 3 deletions platformio/stima_v4/master/src/debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ void init_debug(uint32_t baudrate) {

/// @brief Print debug from ram
/// @param fmt pointer to class FlashStringHelper
/// @param any format output printf
void print_debug(const char *fmt, ...)
{
va_list args;
Expand Down Expand Up @@ -109,7 +108,6 @@ void print_debug_array(const char *prepend, const void *data, size_t length)

/// @brief Print debug from rom Flash
/// @param fmt pointer to class FlashStringHelper
/// @param any format output printf
void print_debug_F(const __FlashStringHelper *fmt, ...)
{
osSuspendAllTasks();
Expand All @@ -124,8 +122,8 @@ void print_debug_F(const __FlashStringHelper *fmt, ...)
}

/// @brief Log debug from rom Flash into queue (Log file output)
/// @param dataLogPutQueue queue for data log
/// @param fmt pointer to class FlashStringHelper
/// @param any format output printf
void queue_debug_F(Queue *dataLogPutQueue, const __FlashStringHelper *fmt, ...)
{
// Only if queue not Full... rapid check
Expand Down
2 changes: 0 additions & 2 deletions platformio/stima_v4/slave-th/src/debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ void init_debug(uint32_t baudrate) {

/// @brief Print debug from ram
/// @param fmt pointer to class FlashStringHelper
/// @param any format output printf
void print_debug(const char *fmt, ...)
{
va_list args;
Expand Down Expand Up @@ -100,7 +99,6 @@ void print_debug_array(const char *prepend, const void *data, size_t length)

/// @brief Print debug from rom Flash
/// @param fmt pointer to class FlashStringHelper
/// @param any format output printf
void print_debug_F(const __FlashStringHelper *fmt, ...)
{
osSuspendAllTasks();
Expand Down

0 comments on commit b673e6a

Please sign in to comment.