MCU 用的是CH32V203C8T6, 不能再简单的程序吧, 应该是5秒输出一个"hello/", 但实际却一直在连续输出, 基本没有任何延时?
请问是哪里出错了呢?
#include "debug.h"
int main(void)
{
USART_Printf_Init(115200);
printf("SystemClk:%d\r\n", SystemCoreClock);
while(1)
{
printf("hello/");
Delay_Ms(5000);
}
}