首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

【基于江科大教程】stm32f103c8t6同时开启2个串口通信USART1和USART3,代码基于标准库可直接使用

硬件开发 6.7MB 20 需要积分: 1
立即下载

资源介绍:

注意: 1、串口1的波特率最高可达115200,串口3的波特率最高只可达9600。 2、该源码为串口收发文本数据包。 3、数据包无需包头,包为需以/n结尾。
/** ****************************************************************************** * @file stm32f10x_tim.c * @author MCD Application Team * @version V3.5.0 * @date 11-March-2011 * @brief This file provides all the TIM firmware functions. ****************************************************************************** * @attention * * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. * *

© COPYRIGHT 2011 STMicroelectronics

****************************************************************************** */ /* Includes ------------------------------------------------------------------*/ #include "stm32f10x_tim.h" #include "stm32f10x_rcc.h" /** @addtogroup STM32F10x_StdPeriph_Driver * @{ */ /** @defgroup TIM * @brief TIM driver modules * @{ */ /** @defgroup TIM_Private_TypesDefinitions * @{ */ /** * @} */ /** @defgroup TIM_Private_Defines * @{ */ /* ---------------------- TIM registers bit mask ------------------------ */ #define SMCR_ETR_Mask ((uint16_t)0x00FF) #define CCMR_Offset ((uint16_t)0x0018) #define CCER_CCE_Set ((uint16_t)0x0001) #define CCER_CCNE_Set ((uint16_t)0x0004) /** * @} */ /** @defgroup TIM_Private_Macros * @{ */ /** * @} */ /** @defgroup TIM_Private_Variables * @{ */ /** * @} */ /** @defgroup TIM_Private_FunctionPrototypes * @{ */ static void TI1_Config(TIM_TypeDef* TIMx, uint16_t TIM_ICPolarity, uint16_t TIM_ICSelection, uint16_t TIM_ICFilter); static void TI2_Config(TIM_TypeDef* TIMx, uint16_t TIM_ICPolarity, uint16_t TIM_ICSelection, uint16_t TIM_ICFilter); static void TI3_Config(TIM_TypeDef* TIMx, uint16_t TIM_ICPolarity, uint16_t TIM_ICSelection, uint16_t TIM_ICFilter); static void TI4_Config(TIM_TypeDef* TIMx, uint16_t TIM_ICPolarity, uint16_t TIM_ICSelection, uint16_t TIM_ICFilter); /** * @} */ /** @defgroup TIM_Private_Macros * @{ */ /** * @} */ /** @defgroup TIM_Private_Variables * @{ */ /** * @} */ /** @defgroup TIM_Private_FunctionPrototypes * @{ */ /** * @} */ /** @defgroup TIM_Private_Functions * @{ */ /** * @brief Deinitializes the TIMx peripheral registers to their default reset values. * @param TIMx: where x can be 1 to 17 to select the TIM peripheral. * @retval None */ void TIM_DeInit(TIM_TypeDef* TIMx) { /* Check the parameters */ assert_param(IS_TIM_ALL_PERIPH(TIMx)); if (TIMx == TIM1) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM1, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM1, DISABLE); } else if (TIMx == TIM2) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM2, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM2, DISABLE); } else if (TIMx == TIM3) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM3, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM3, DISABLE); } else if (TIMx == TIM4) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM4, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM4, DISABLE); } else if (TIMx == TIM5) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM5, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM5, DISABLE); } else if (TIMx == TIM6) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM6, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM6, DISABLE); } else if (TIMx == TIM7) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM7, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM7, DISABLE); } else if (TIMx == TIM8) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM8, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM8, DISABLE); } else if (TIMx == TIM9) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM9, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM9, DISABLE); } else if (TIMx == TIM10) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM10, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM10, DISABLE); } else if (TIMx == TIM11) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM11, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM11, DISABLE); } else if (TIMx == TIM12) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM12, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM12, DISABLE); } else if (TIMx == TIM13) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM13, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM13, DISABLE); } else if (TIMx == TIM14) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM14, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM14, DISABLE); } else if (TIMx == TIM15) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM15, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM15, DISABLE); } else if (TIMx == TIM16) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM16, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM16, DISABLE); } else { if (TIMx == TIM17) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM17, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM17, DISABLE); } } } /** * @brief Initializes the TIMx Time Base Unit peripheral according to * the specified parameters in the TIM_TimeBaseInitStruct. * @param TIMx: where x can be 1 to 17 to select the TIM peripheral. * @param TIM_TimeBaseInitStruct: pointer to a TIM_TimeBaseInitTypeDef * structure that contains the configuration information for the * specified TIM peripheral. * @retval None */ void TIM_TimeBaseInit(TIM_TypeDef* TIMx, TIM_TimeBaseInitTypeDef* TIM_TimeBaseInitStruct) { uint16_t tmpcr1 = 0; /* Check the parameters */ assert_param(IS_TIM_ALL_PERIPH(TIMx)); assert_param(IS_TIM_COUNTER_MODE(TIM_TimeBaseInitStruct->TIM_CounterMode)); assert_param(IS_TIM_CKD_DIV(TIM_TimeBaseInitStruct->TIM_ClockDivision)); tmpcr1 = TIMx->CR1; if((TIMx == TIM1) || (TIMx == TIM8)|| (TIMx == TIM2) || (TIMx == TIM3)|| (TIMx == TIM4) || (TIMx == TIM5)) { /* Select the Counter Mode */ tmpcr1 &= (uint16_t)(~((uint16_t)(TIM_CR1_DIR | TIM_CR1_CMS))); tmpcr1 |= (uint32_t)TIM_TimeBaseInitStruct->TIM_CounterMode; } if((TIMx != TIM6) && (TIMx != TIM7)) { /* Set the clock division */ tmpcr1 &= (uint16_t)(~((uint16_t)TIM_CR1_CKD)); tmpcr1 |= (uint32_t)TIM_TimeBaseInitStruct->TIM_ClockDivision; } TIMx->CR1 = tmpcr1; /* Set the Autoreload value */ TIMx->ARR = TIM_TimeBaseInitStruct->TIM_Period ; /* Set the Prescaler value */ TIMx->PSC = TIM_TimeBaseInitStruct->TIM_Prescaler; if ((TIMx == TIM1) || (TIMx == TIM8)|| (TIMx == TIM15)|| (TIMx == TIM16) || (TIMx == TIM17)) { /* Set the Repetition Counter value */ TIMx->RCR = TIM_TimeBaseInitStruct->TIM_RepetitionCounter; } /* Generate an update event to reload the Prescaler and the Repetition counter values immediately */ TIMx->EGR = TIM_PSCReloadMode_Immediate; } /** * @brief Initializes the TIMx Channel1 according to the specified * parameters in the TIM_OCInitStruct. * @param TIMx: where x can be 1 to 17 except 6 and 7 to select the TIM peripheral. * @param TIM_OCInitStru

资源文件列表:

串口通信USART1&3.zip 大约有204个文件
  1. 串口通信USART1&3/
  2. 串口通信USART1&3/DebugConfig/
  3. 串口通信USART1&3/DebugConfig/Target_1_STM32F103C8_1.0.0.dbgconf 6.79KB
  4. 串口通信USART1&3/Hardware/
  5. 串口通信USART1&3/Hardware/Key.c 818B
  6. 串口通信USART1&3/Hardware/Key.h 95B
  7. 串口通信USART1&3/Hardware/LED.c 1.03KB
  8. 串口通信USART1&3/Hardware/LED.h 200B
  9. 串口通信USART1&3/Hardware/OLED.c 7.72KB
  10. 串口通信USART1&3/Hardware/OLED.h 567B
  11. 串口通信USART1&3/Hardware/OLED_Font.h 8.94KB
  12. 串口通信USART1&3/Hardware/Serial1.c 3.28KB
  13. 串口通信USART1&3/Hardware/Serial1.h 405B
  14. 串口通信USART1&3/Hardware/Serial3.c 3.89KB
  15. 串口通信USART1&3/Hardware/Serial3.h 405B
  16. 串口通信USART1&3/keilkill.bat 399B
  17. 串口通信USART1&3/Library/
  18. 串口通信USART1&3/Library/misc.c 6.88KB
  19. 串口通信USART1&3/Library/misc.h 8.77KB
  20. 串口通信USART1&3/Library/stm32f10x_adc.c 46.09KB
  21. 串口通信USART1&3/Library/stm32f10x_adc.h 21.18KB
  22. 串口通信USART1&3/Library/stm32f10x_bkp.c 8.26KB
  23. 串口通信USART1&3/Library/stm32f10x_bkp.h 7.38KB
  24. 串口通信USART1&3/Library/stm32f10x_can.c 44.05KB
  25. 串口通信USART1&3/Library/stm32f10x_can.h 26.91KB
  26. 串口通信USART1&3/Library/stm32f10x_cec.c 11.38KB
  27. 串口通信USART1&3/Library/stm32f10x_cec.h 6.42KB
  28. 串口通信USART1&3/Library/stm32f10x_crc.c 3.27KB
  29. 串口通信USART1&3/Library/stm32f10x_crc.h 2.11KB
  30. 串口通信USART1&3/Library/stm32f10x_dac.c 18.64KB
  31. 串口通信USART1&3/Library/stm32f10x_dac.h 14.88KB
  32. 串口通信USART1&3/Library/stm32f10x_dbgmcu.c 5.03KB
  33. 串口通信USART1&3/Library/stm32f10x_dbgmcu.h 3.73KB
  34. 串口通信USART1&3/Library/stm32f10x_dma.c 28.91KB
  35. 串口通信USART1&3/Library/stm32f10x_dma.h 20.27KB
  36. 串口通信USART1&3/Library/stm32f10x_exti.c 6.8KB
  37. 串口通信USART1&3/Library/stm32f10x_exti.h 6.66KB
  38. 串口通信USART1&3/Library/stm32f10x_flash.c 61.08KB
  39. 串口通信USART1&3/Library/stm32f10x_flash.h 24.85KB
  40. 串口通信USART1&3/Library/stm32f10x_fsmc.c 34.65KB
  41. 串口通信USART1&3/Library/stm32f10x_fsmc.h 26.38KB
  42. 串口通信USART1&3/Library/stm32f10x_gpio.c 22.68KB
  43. 串口通信USART1&3/Library/stm32f10x_gpio.h 19.7KB
  44. 串口通信USART1&3/Library/stm32f10x_i2c.c 44.71KB
  45. 串口通信USART1&3/Library/stm32f10x_i2c.h 29.33KB
  46. 串口通信USART1&3/Library/stm32f10x_iwdg.c 4.8KB
  47. 串口通信USART1&3/Library/stm32f10x_iwdg.h 3.74KB
  48. 串口通信USART1&3/Library/stm32f10x_pwr.c 8.55KB
  49. 串口通信USART1&3/Library/stm32f10x_pwr.h 4.28KB
  50. 串口通信USART1&3/Library/stm32f10x_rcc.c 50.07KB
  51. 串口通信USART1&3/Library/stm32f10x_rcc.h 29.74KB
  52. 串口通信USART1&3/Library/stm32f10x_rtc.c 8.4KB
  53. 串口通信USART1&3/Library/stm32f10x_rtc.h 3.77KB
  54. 串口通信USART1&3/Library/stm32f10x_sdio.c 28.25KB
  55. 串口通信USART1&3/Library/stm32f10x_sdio.h 21.35KB
  56. 串口通信USART1&3/Library/stm32f10x_spi.c 29.52KB
  57. 串口通信USART1&3/Library/stm32f10x_spi.h 17.31KB
  58. 串口通信USART1&3/Library/stm32f10x_tim.c 106.6KB
  59. 串口通信USART1&3/Library/stm32f10x_tim.h 51.2KB
  60. 串口通信USART1&3/Library/stm32f10x_usart.c 37.41KB
  61. 串口通信USART1&3/Library/stm32f10x_usart.h 16.16KB
  62. 串口通信USART1&3/Library/stm32f10x_wwdg.c 5.6KB
  63. 串口通信USART1&3/Library/stm32f10x_wwdg.h 2.9KB
  64. 串口通信USART1&3/Listings/
  65. 串口通信USART1&3/Listings/Project.map 94.17KB
  66. 串口通信USART1&3/Listings/startup_stm32f10x_md.lst 39.42KB
  67. 串口通信USART1&3/Objects/
  68. 串口通信USART1&3/Objects/core_cm3.crf 3.85KB
  69. 串口通信USART1&3/Objects/core_cm3.d 106B
  70. 串口通信USART1&3/Objects/core_cm3.o 10.95KB
  71. 串口通信USART1&3/Objects/delay.crf 338.11KB
  72. 串口通信USART1&3/Objects/delay.d 1.34KB
  73. 串口通信USART1&3/Objects/delay.o 371.96KB
  74. 串口通信USART1&3/Objects/key.crf 338.47KB
  75. 串口通信USART1&3/Objects/key.d 1.31KB
  76. 串口通信USART1&3/Objects/key.o 371.86KB
  77. 串口通信USART1&3/Objects/led.crf 338.57KB
  78. 串口通信USART1&3/Objects/led.d 1.28KB
  79. 串口通信USART1&3/Objects/led.o 377.24KB
  80. 串口通信USART1&3/Objects/main.crf 346.82KB
  81. 串口通信USART1&3/Objects/main.d 1.61KB
  82. 串口通信USART1&3/Objects/main.o 377.9KB
  83. 串口通信USART1&3/Objects/misc.crf 338.78KB
  84. 串口通信USART1&3/Objects/misc.d 1.34KB
  85. 串口通信USART1&3/Objects/misc.o 375.04KB
  86. 串口通信USART1&3/Objects/oled.crf 341.39KB
  87. 串口通信USART1&3/Objects/oled.d 1.35KB
  88. 串口通信USART1&3/Objects/oled.o 395.75KB
  89. 串口通信USART1&3/Objects/Project.axf 316.92KB
  90. 串口通信USART1&3/Objects/Project.build_log.htm 1.58KB
  91. 串口通信USART1&3/Objects/Project.htm 38.2KB
  92. 串口通信USART1&3/Objects/Project.lnp 1.2KB
  93. 串口通信USART1&3/Objects/Project.sct 494B
  94. 串口通信USART1&3/Objects/Project_sct.Bak 479B
  95. 串口通信USART1&3/Objects/Project_Target 1.dep 55.01KB
  96. 串口通信USART1&3/Objects/serial.crf 344.52KB
  97. 串口通信USART1&3/Objects/serial.d 1.49KB
  98. 串口通信USART1&3/Objects/serial.o 384.98KB
  99. 串口通信USART1&3/Objects/serial1.crf 344.56KB
  100. 串口通信USART1&3/Objects/serial1.d 1.53KB
  101. 串口通信USART1&3/Objects/serial1.o 386KB
  102. 串口通信USART1&3/Objects/serial3.crf 344.55KB
  103. 串口通信USART1&3/Objects/serial3.d 1.53KB
  104. 串口通信USART1&3/Objects/serial3.o 386.02KB
  105. 串口通信USART1&3/Objects/startup_stm32f10x_md.d 64B
  106. 串口通信USART1&3/Objects/startup_stm32f10x_md.o 5.75KB
  107. 串口通信USART1&3/Objects/stm32f10x_adc.crf 345.79KB
  108. 串口通信USART1&3/Objects/stm32f10x_adc.d 1.63KB
  109. 串口通信USART1&3/Objects/stm32f10x_adc.o 421.58KB
  110. 串口通信USART1&3/Objects/stm32f10x_bkp.crf 339.7KB
  111. 串口通信USART1&3/Objects/stm32f10x_bkp.d 1.63KB
  112. 串口通信USART1&3/Objects/stm32f10x_bkp.o 384.8KB
  113. 串口通信USART1&3/Objects/stm32f10x_can.crf 347.36KB
  114. 串口通信USART1&3/Objects/stm32f10x_can.d 1.63KB
  115. 串口通信USART1&3/Objects/stm32f10x_can.o 406.91KB
  116. 串口通信USART1&3/Objects/stm32f10x_cec.crf 340.24KB
  117. 串口通信USART1&3/Objects/stm32f10x_cec.d 1.63KB
  118. 串口通信USART1&3/Objects/stm32f10x_cec.o 387.4KB
  119. 串口通信USART1&3/Objects/stm32f10x_crc.crf 338.35KB
  120. 串口通信USART1&3/Objects/stm32f10x_crc.d 1.63KB
  121. 串口通信USART1&3/Objects/stm32f10x_crc.o 376.05KB
  122. 串口通信USART1&3/Objects/stm32f10x_dac.crf 340.37KB
  123. 串口通信USART1&3/Objects/stm32f10x_dac.d 1.63KB
  124. 串口通信USART1&3/Objects/stm32f10x_dac.o 385.43KB
  125. 串口通信USART1&3/Objects/stm32f10x_dbgmcu.crf 338.14KB
  126. 串口通信USART1&3/Objects/stm32f10x_dbgmcu.d 1.73KB
  127. 串口通信USART1&3/Objects/stm32f10x_dbgmcu.o 372.17KB
  128. 串口通信USART1&3/Objects/stm32f10x_dma.crf 341.82KB
  129. 串口通信USART1&3/Objects/stm32f10x_dma.d 1.63KB
  130. 串口通信USART1&3/Objects/stm32f10x_dma.o 384.88KB
  131. 串口通信USART1&3/Objects/stm32f10x_exti.crf 339.33KB
  132. 串口通信USART1&3/Objects/stm32f10x_exti.d 1.66KB
  133. 串口通信USART1&3/Objects/stm32f10x_exti.o 379.1KB
  134. 串口通信USART1&3/Objects/stm32f10x_flash.crf 345.63KB
  135. 串口通信USART1&3/Objects/stm32f10x_flash.d 1.7KB
  136. 串口通信USART1&3/Objects/stm32f10x_flash.o 410.54KB
  137. 串口通信USART1&3/Objects/stm32f10x_fsmc.crf 344.17KB
  138. 串口通信USART1&3/Objects/stm32f10x_fsmc.d 1.66KB
  139. 串口通信USART1&3/Objects/stm32f10x_fsmc.o 396.22KB
  140. 串口通信USART1&3/Objects/stm32f10x_gpio.crf 342.2KB
  141. 串口通信USART1&3/Objects/stm32f10x_gpio.d 1.66KB
  142. 串口通信USART1&3/Objects/stm32f10x_gpio.o 395.07KB
  143. 串口通信USART1&3/Objects/stm32f10x_i2c.crf 344.57KB
  144. 串口通信USART1&3/Objects/stm32f10x_i2c.d 1.63KB
  145. 串口通信USART1&3/Objects/stm32f10x_i2c.o 415.79KB
  146. 串口通信USART1&3/Objects/stm32f10x_it.crf 338.27KB
  147. 串口通信USART1&3/Objects/stm32f10x_it.d 1.59KB
  148. 串口通信USART1&3/Objects/stm32f10x_it.o 379.81KB
  149. 串口通信USART1&3/Objects/stm32f10x_iwdg.crf 338.45KB
  150. 串口通信USART1&3/Objects/stm32f10x_iwdg.d 1.66KB
  151. 串口通信USART1&3/Objects/stm32f10x_iwdg.o 376.03KB
  152. 串口通信USART1&3/Objects/stm32f10x_pwr.crf 339.61KB
  153. 串口通信USART1&3/Objects/stm32f10x_pwr.d 1.63KB
  154. 串口通信USART1&3/Objects/stm32f10x_pwr.o 380.7KB
  155. 串口通信USART1&3/Objects/stm32f10x_rcc.crf 345.69KB
  156. 串口通信USART1&3/Objects/stm32f10x_rcc.d 1.63KB
  157. 串口通信USART1&3/Objects/stm32f10x_rcc.o 414.56KB
  158. 串口通信USART1&3/Objects/stm32f10x_rtc.crf 339.61KB
  159. 串口通信USART1&3/Objects/stm32f10x_rtc.d 1.63KB
  160. 串口通信USART1&3/Objects/stm32f10x_rtc.o 386.94KB
  161. 串口通信USART1&3/Objects/stm32f10x_sdio.crf 342.8KB
  162. 串口通信USART1&3/Objects/stm32f10x_sdio.d 1.66KB
  163. 串口通信USART1&3/Objects/stm32f10x_sdio.o 409.4KB
  164. 串口通信USART1&3/Objects/stm32f10x_spi.crf 342.66KB
  165. 串口通信USART1&3/Objects/stm32f10x_spi.d 1.63KB
  166. 串口通信USART1&3/Objects/stm32f10x_spi.o 401.49KB
  167. 串口通信USART1&3/Objects/stm32f10x_tim.crf 360.35KB
  168. 串口通信USART1&3/Objects/stm32f10x_tim.d 1.63KB
  169. 串口通信USART1&3/Objects/stm32f10x_tim.o 499.58KB
  170. 串口通信USART1&3/Objects/stm32f10x_usart.crf 344.26KB
  171. 串口通信USART1&3/Objects/stm32f10x_usart.d 1.7KB
  172. 串口通信USART1&3/Objects/stm32f10x_usart.o 410.63KB
  173. 串口通信USART1&3/Objects/stm32f10x_wwdg.crf 338.89KB
  174. 串口通信USART1&3/Objects/stm32f10x_wwdg.d 1.66KB
  175. 串口通信USART1&3/Objects/stm32f10x_wwdg.o 378.93KB
  176. 串口通信USART1&3/Objects/system_stm32f10x.crf 339.93KB
  177. 串口通信USART1&3/Objects/system_stm32f10x.d 1.66KB
  178. 串口通信USART1&3/Objects/system_stm32f10x.o 374.41KB
  179. 串口通信USART1&3/Project.uvguix.29874 91.44KB
  180. 串口通信USART1&3/Project.uvguix.Admin 170.17KB
  181. 串口通信USART1&3/Project.uvoptx 32.21KB
  182. 串口通信USART1&3/Project.uvprojx 26.57KB
  183. 串口通信USART1&3/Start/
  184. 串口通信USART1&3/Start/core_cm3.c 16.87KB
  185. 串口通信USART1&3/Start/core_cm3.h 83.71KB
  186. 串口通信USART1&3/Start/startup_stm32f10x_cl.s 15.4KB
  187. 串口通信USART1&3/Start/startup_stm32f10x_hd.s 15.14KB
  188. 串口通信USART1&3/Start/startup_stm32f10x_hd_vl.s 15.32KB
  189. 串口通信USART1&3/Start/startup_stm32f10x_ld.s 12.09KB
  190. 串口通信USART1&3/Start/startup_stm32f10x_ld_vl.s 13.34KB
  191. 串口通信USART1&3/Start/startup_stm32f10x_md.s 12.47KB
  192. 串口通信USART1&3/Start/startup_stm32f10x_md_vl.s 13.74KB
  193. 串口通信USART1&3/Start/startup_stm32f10x_xl.s 15.58KB
  194. 串口通信USART1&3/Start/stm32f10x.h 619.08KB
  195. 串口通信USART1&3/Start/system_stm32f10x.c 35.7KB
  196. 串口通信USART1&3/Start/system_stm32f10x.h 2.04KB
  197. 串口通信USART1&3/System/
  198. 串口通信USART1&3/System/Delay.c 838B
  199. 串口通信USART1&3/System/Delay.h 135B
  200. 串口通信USART1&3/User/
  201. 串口通信USART1&3/User/main.c 1.47KB
  202. 串口通信USART1&3/User/stm32f10x_conf.h 3.18KB
  203. 串口通信USART1&3/User/stm32f10x_it.c 4.3KB
  204. 串口通信USART1&3/User/stm32f10x_it.h 2.04KB
0评论
提交 加载更多评论
其他资源 fusion360练习项目,树莓派4b外壳3D打印(stl及f3d文件格式)可直接使用嘉立创打印
基于fusion360设计的树莓派4b外壳
ant-design-mobile-rn-2.2.0-beta.1.zip
一个基于 React Native 的 UI 组件库
ant-design-mobile-rn-2.2.0-beta.1.zip ant-design-mobile-rn-2.2.0-beta.1.zip
ant-design-mobile-rn-2.2.0-beta.2.zip
一个基于 React Native 的 UI 组件库
ant-design-mobile-rn-2.2.0-beta.2.zip ant-design-mobile-rn-2.2.0-beta.2.zip
ant-design-mobile-rn-2.2.0.zip
一个基于 React Native 的 UI 组件库
ant-design-mobile-rn-2.2.0.zip ant-design-mobile-rn-2.2.0.zip
微霸2024无限制版.zip
软件功能 1、设备伪装,一键改机,一键复原,模拟数据都是真机信息,保证真实性; 2、多应用多账户随心切换; 3、应用复原、位置伪装; 4、账户移机!一段微霸云码,轻松将A设备账户移到B设备; 5、深度微信脚本定制,支持账号无损移机、多账号随切、自动养号、新机注册、账户防封; 6、支持群控、云控接入!支持真机和各种模拟器(雷电、逍遥、夜神等)。 7、手机上安装,即可马上刷机。刷机何需用电脑 软件亮点 1、自动化。通过脚本,控制设备运行; 2、一键改机。伪装成一台新的手机设备; 3、一键复原。抹除设备伪装数据,复原为设备初始状态; 4、应用多开。设置需要伪装的应用,在多开养号中可进行切换; 5、应用抹除。深度抹除应用的伪装数据,使它恢复到刚安装的状态;
STM32移植LVGL+FatFs+FreeRTOS综合工程代码
在STM32F407开发板,针对MDK KEIL v5软件平台上,移植实现LVGL+FatFs+FreeRTOS的完整工程代码。 FatFs R0.15移植教程:https://blog.csdn.net/weixin_49337111/article/details/139332023?spm=1001.2014.3001.5501 LVGL移植教程:https://blog.csdn.net/weixin_49337111/article/details/139142416?spm=1001.2014.3001.5501 LVGL图片显示教程:https://blog.csdn.net/weixin_49337111/article/details/141609089?spm=1001.2014.3001.5501 FreeRTOS移植教程:https://blog.csdn.net/weixin_49337111/article/details/135079595?spm=1001.2014.3001.5501
0827/////////////////
0827/////////////////
python3.8版本的Cartopy库whl文件
python3.8版本的Cartopy库whl文件,pypi上没有提供python3.8版本的二进制whl文件安装,只能编译安装,这里方便大家学习,编译好了windows下32位和64位两个版本的Cartopy库文件。免积分,免费,免vip。开源的东西无偿分享,如果因为一些原因莫名变收费收积分要vip才能下载等情况,可私信。愿学习无门槛。