MCU 用的是CH32V203C8T6, 不能再簡單的程序吧, 應(yīng)該是5秒輸出一個"hello/", 但實際卻一直在連續(xù)輸出, 基本沒有任何延時?
請問是哪里出錯了呢?
#include "debug.h"
int main(void)
{
??? USART_Printf_Init(115200);
??? printf("SystemClk:%d\r\n", SystemCoreClock);
??? while(1)
??? {
??????? printf("hello/");
??????? Delay_Ms(5000);
??? }
}