- #include
- GPIO_InitTypeDef GPIO_InitStructure;//¶¨ÒåÒ»¸ö¹Ü½Å³õʼ»¯µÄ½á¹¹Ìå
- int main(void)
- {
- //¿ªÆôPA¿ÚʱÖÓ
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
- //ÅäÖÃPA0µÄģʽ
- GPIO_InitStructure.GPIO_Pin=GPIO_Pin_0;
- GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;
- GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
- GPIO_Init(GPIOA,&GPIO_InitStructure);
- //PA0Êä³ö¸ßµçƽ
- GPIO_SetBits(GPIOA,GPIO_Pin_0);
- while(1);
- }
复制代码
我是按照优酷上的
STM32时频里写的程序,可是编译后没反应,还有26个错误,还说找不到stm32f10x_type.h文件,,还有,第一行中的stm32f10x.h也不变 {MOD},前面还有红 {MOD}的叉,这是为什么?大家初学时遇到过这样的情况吗?
一周热门 更多>