swieeprom
2.0.0.7
|
LOG driver implementation. More...
#include "log.h"
Functions | |
void | log_init (void) |
Initializes LOG module. More... | |
void | log_line (char *txt) |
Prints string to UART terminal with a new line. More... | |
void | log_txt (char *txt) |
Prints string to UART terminal. More... | |
void | log_byte (char t_char) |
Prints byte to UART terminal. More... | |
LOG driver implementation.
void log_byte | ( | char | t_char | ) |
Prints byte to UART terminal.
Prints t_char to UART terminal.
[in] | t_char | : Byte to send. |
void log_init | ( | void | ) |
Initializes LOG module.
Initializes LOG driver.
void log_line | ( | char * | txt | ) |
Prints string to UART terminal with a new line.
Prints txt to UART terminal with CR and LF sent additionally.
[in] | txt | : String to send. |
void log_txt | ( | char * | txt | ) |
Prints string to UART terminal.
Prints txt to UART terminal.
[in] | txt | : String to send. |