程序部分
--------------------------------------------------------------------------------------------------------------------------------
#include "stm32f10x.h" // Device header
#include "Delay.h"
int main(void)
{
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitTypeDef GPIO_InitStucture;
GPIO_InitStucture.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出 高低电平均有驱动,开漏输出只有低电平驱动
GPIO_InitStucture.GPIO_Pin = GPIO_Pin_0; //0号引脚
GPIO_InitStucture.GPIO_Speed = GPIO_Speed_50MHz; //50mz的速度
GPIO_Init(GPIOA, &GPIO_InitStucture);
// GPIO_SetBits(GPIOA, GPIO_Pin_0); //给高电平输出
// GPIO_ResetBits(GPIOA, GPIO_Pin_0); //给低电平输出
// GPIO_Write(GPIO_TypeDef* GPIOx, uint16_t PortVal);
while(1)
{
// GPIO_