This commit is contained in:
huxi
2025-12-03 11:12:34 +08:00
parent c23ae4f24c
commit bc195654bf
8163 changed files with 3799544 additions and 92 deletions
+30
View File
@@ -0,0 +1,30 @@
#include "includes.h"
#if (CONFIG_UART_DEBUG_ENABLE == 0)
void putchar(char a)
{
}
void putbyte(char a)
{
}
int puts(const char *out)
{
return 0;
}
void put_u32hex(unsigned int dat)
{
}
void put_buf(const u8 *buf, int len)
{
}
int printf(const char *format, ...)
{
return 0;
}
#endif /* #if (CONFIG_UART_DEBUG_ENABLE == 0) */