支持解析脚步中的应用并自动执行
This commit is contained in:
zhangzheng
2023-11-27 22:25:21 +08:00
parent 5fc71a7f98
commit 3a10b63e5f
14 changed files with 128 additions and 138 deletions

View File

@@ -26,7 +26,6 @@ static void print_raw(const char *str)
{
for (int i = 0; str[i]; i++)
{
// xputc(str[i]);
uart_putc(uart_get_global(), str[i]);
}
}
@@ -37,7 +36,6 @@ static void print_raw(const char *str)
*/
void putc(int c)
{
// xputc(c);
uart_putc(uart_get_global(), c);
}
int getc(void)