This commit is contained in:
2026-03-31 23:30:33 +08:00
commit 760043c8e7
1615 changed files with 1406836 additions and 0 deletions

21
App/retarget.h Normal file
View File

@@ -0,0 +1,21 @@
#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