#define LED0_GPIO_PORT GPIOB /* GPIO端口 */ #define LED0_GPIO_CLK RCC_APB2Periph_GPIOB /* GPIO端口时钟 */ #define LED0_GPIO_PIN GPIO_Pin_8 //引脚 /* 使用标准的固件库控制IO*/ #define LED(a) if (a) \ GPIO_SetBits(LED0_GPIO_PORT,LED0_GPIO_PIN);\ else \ GPIO_ResetBits(...