摘要:
串口初始化USART1_Init(); //USART1_Init(); /* 串口初始化,用于调试 */ void USART1_Init(void) { //定义配置结构体 GPIO_InitTypeDef GPIO_InitStructure; USART_InitTypeDef USART_ 阅读全文
摘要:
SysTick初始化分析 //SysTick_Init(); /* SysTick初始化,配置为系统时钟 */ //运行系统时钟初始化函数: void SysTick_Init(void) { if(SysTick_Config(SystemCoreClock / SYS_DIV) )//SysTi 阅读全文