day1 STM32工程模板
·

#include "stm32f10x.h" // Device header
int main(){
//RCC->APB2ENR = 0x00000010; //可以打开时钟了
//GPIOC->CRH = 0x00300000;
//GPIOC->ODR = 0x00002000;
// 开启时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC,ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOC,&GPIO_InitStructure);
//GPIO_SetBits(GPIOC,GPIO_Pin_13);
GPIO_ResetBits(GPIOC,GPIO_Pin_13);
//HardFault_Handler
while(1)
{
}
}
更多推荐



所有评论(0)