[temporary commit]

This commit is contained in:
Phat Nguyen
2024-04-03 21:26:04 +07:00
parent c1ab99ba8d
commit 027ffeaa92
214 changed files with 1150 additions and 506042 deletions

View File

@ -1,5 +1,19 @@
#include "PrintLog.h"
/**
* @brief Construct a new Print Log:: Print Log object
*
* @param log Log stream
* @param tag Tag name
*/
PrintLog::PrintLog(Stream &log, String tag) : log(log), tag(tag)
{
}
PrintLog::~PrintLog()
{
}
/**
* @brief Print log info
*

View File

@ -21,18 +21,4 @@ public:
void logWarning(const char* warning);
};
/**
* @brief Construct a new Print Log:: Print Log object
*
* @param log Log stream
* @param tag Tag name
*/
PrintLog::PrintLog(Stream &log, String tag) : log(log), tag(tag)
{
}
PrintLog::~PrintLog()
{
}
#endif /** _PRINT_LOG_H_ */