stm32f103c8t6最小程序
时间: 2023-10-15 07:05:27 浏览: 103
以下是stm32f103c8t6最小程序的代码:
```c
#include "stm32f10x.h"
int main(void)
{
RCC->APB2ENR |= RCC_APB2ENR_IOPCEN; //使能GPIOC时钟
GPIOC->CRH &= ~(GPIO_CRH_MODE13 | GPIO_CRH_CNF13); //PC13设置为通用推挽输出
GPIOC->CRH |= GPIO_CRH_MODE13_0; //PC13设置为最大输出速率
while(1)
{
GPIOC->BSRR = GPIO_BSRR_BS13; //PC13输出高电平
for(int i=0; i<1000000; i++); //延时
GPIOC->BSRR = GPIO_BSRR_BR13; //PC13输出低电平
for(int i=0; i<1000000; i++); //延时
}
}
```
阅读全文