STM32 Bootloader
Customizable Bootloader for STM32 microcontrollers
log.h
Go to the documentation of this file.
1 
16 #ifndef BSP_LOG_H
17 #define BSP_LOG_H
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
32 /* Includes ------------------------------------------------------------------*/
33 
34 /* Function prototypes -------------------------------------------------------*/
35 
39 void LogInit(void);
40 
44 void LogDeInit(void);
45 
52 void LogPrint(const char* format, ...);
53 
60 #ifdef __cplusplus
61 }
62 #endif
63 
64 #endif
void LogDeInit(void)
De-initialize the UART peripheral used for logging.
Definition: log.c:98
void LogInit(void)
Initialize the UART peripheral used for logging.
Definition: log.c:77
void LogPrint(const char *format,...)
Print a formatted log message over the UART interface.
Definition: log.c:40