Files
ASER/App/retarget.h

21 lines
297 B
C
Raw Permalink Normal View History

2026-03-31 23:30:33 +08:00
#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