Virgil IoT KIT
|
Logger HAL functions declarations. More...
#include <stdbool.h>
Go to the source code of this file.
Functions | |
bool | vs_logger_output_hal (const char *buffer) |
Function signature for unterminated string output. More... | |
bool | vs_logger_current_time_hal (void) |
Output current date/time function signature. More... | |
Logger HAL functions declarations.
These functions have to be implemented to use logger module. See #logger_usage for details.
bool vs_logger_current_time_hal | ( | void | ) |
Output current date/time function signature.
This is the HAL function that has to be implemented by user if VS_IOT_LOGGER_OUTPUT_TIME == 1. It adds current date and/or time to the output, e.g. by using vs_logger_output_hal.
bool vs_logger_output_hal | ( | const char * | buffer | ) |
Function signature for unterminated string output.
This is the HAL function that has to be implemented by user if VS_IOT_LOGGER_USE_LIBRARY == 1. It sends string to the output.
[in] | buffer | Buffer with part of the string. Cannot be NULL |