Initial commit: my SECS2 project

This commit is contained in:
2026-06-12 14:19:01 +08:00
commit 2c3e2c4dc2
1138 changed files with 603966 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#include "bsp_print.h"
#include "bsp_Uart.h"
#include "stdio.h"
//#include "wk_usart.h"
/*ÖØ¶¨Òåfputcº¯Êý*/
int fputc(int ch, FILE *f)
{
u8 Data = ch;
COM_Uart1.Send(&COM_Uart1,&Data,1);
}
void Debug_UartSend(u8 *pData,u16 Len)
{
//COM_Uart1.Send(&COM_Uart1,pData,Len);
}
void UartSend(u8 ch)
{
COM_Uart1.Send(&COM_Uart1,&ch,1);
}