一段基于STM32F103C8T6最小系统板PIN13输出LED闪烁的小程序
#include "stm32f10x.h"#define DELAY Delay(0x0ffffff);void Delay(__IO u32 nCount);int main(void){ GPIO_InitTypeDef GPIO_InitStruct; RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC,ENABLE); GPIO_InitStruct.GPIO_Pin=GPIO_Pin_13; GPIO_InitStruct...



