03 2021 档案

摘要:IntelliJ IDEA新建maven的spring项目 pom.xml添加如下代码: <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>4.3. 阅读全文
posted @ 2021-03-03 11:13 slyuan 阅读(156) 评论(0) 推荐(0)
摘要:串口初始化USART1_Init(); //USART1_Init(); /* 串口初始化,用于调试 */ void USART1_Init(void) { //定义配置结构体 GPIO_InitTypeDef GPIO_InitStructure; USART_InitTypeDef USART_ 阅读全文
posted @ 2021-03-01 10:57 slyuan 阅读(1544) 评论(0) 推荐(0)
摘要:SysTick初始化分析 //SysTick_Init(); /* SysTick初始化,配置为系统时钟 */ //运行系统时钟初始化函数: void SysTick_Init(void) { if(SysTick_Config(SystemCoreClock / SYS_DIV) )//SysTi 阅读全文
posted @ 2021-03-01 10:56 slyuan 阅读(1143) 评论(0) 推荐(0)