21 lines
297 B
C
21 lines
297 B
C
#ifndef __RETARGET_H
|
|
#define __RETARGET_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* 初始化日志输出模块 */
|
|
void Retarget_Init(void);
|
|
|
|
/* 日志输出加锁 */
|
|
void Retarget_Lock(void);
|
|
|
|
/* 日志输出解锁 */
|
|
void Retarget_Unlock(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |