開(kāi)發(fā)板型號(hào)為CH32V103C-R1-1V0,芯片為CH32V103C8T6,小白根據(jù)b站上沁恒官方點(diǎn)亮LED流水燈實(shí)驗(yàn)進(jìn)行操作,程序編譯無(wú)錯(cuò)誤,WCH-LINK正常連接,但是開(kāi)發(fā)板只有紅燈常亮,單步調(diào)試也沒(méi)有反應(yīng)。想問(wèn)問(wèn)是不是有什么其他線路要連接,或者其他錯(cuò)誤?
while(1)
{
? ? GPIO_SetBits(GPIOB, GPIO_Pin_5);
? ? GPIO_ResetBits(GPIOB, GPIO_Pin_3);
? ? Delay_Ms(1000);
? ? GPIO_SetBits(GPIOB, GPIO_Pin_3);
? ? GPIO_ResetBits(GPIOB, GPIO_Pin_4);
? ? Delay_Ms(1000);
? ? GPIO_SetBits(GPIOB, GPIO_Pin_4);
? ? GPIO_ResetBits(GPIOB, GPIO_Pin_5);
? ? Delay_Ms(1000);
}