21# 香水城
那个帖子当时是讨论预加载问题,对引脚配置并没有牵涉进去,所以程序并没有贴全。
/* Configure PE11 PE13 as GPIO_Mode_AF_PP */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11 | GPIO_Pin_13;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOE, &GPIO_InitStructure);
这部分在后面的程序没有贴在那个帖子里。
如果引脚只设为IPD,肯定不能正常输出。 |