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

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

STM32F103C8T6+LED显示

硬件开发 10.97MB 34 需要积分: 1
立即下载

资源介绍:

实验要求 用proteus+keil编写 用Proteus设计一个STM32最小系统板+LED流水灯实验原理图,仿真运行。 以STM32最小系统核心板(STM32F103C8T6)+3只红绿蓝LED搭建电路,使用GPIOA端口控制LED灯,轮流闪烁,间隔时长1秒。 程序采用stm32标准库编写,keil5编译,代码有详细注解。
/** ****************************************************************************** * @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

资源文件列表:

STM32F103C8+LED.zip 大约有283个文件
  1. LED/
  2. LED/keil_LED/
  3. LED/keil_LED/CORE/
  4. LED/keil_LED/CORE/core_cm3.c 16.87KB
  5. LED/keil_LED/CORE/core_cm3.h 83.71KB
  6. LED/keil_LED/CORE/startup_stm32f10x_ld.s 12.09KB
  7. LED/keil_LED/LED.uvgui.1 136.43KB
  8. LED/keil_LED/LED.uvopt 18.1KB
  9. LED/keil_LED/LED.uvproj 20.67KB
  10. LED/keil_LED/Listings/
  11. LED/keil_LED/Listings/LED.map 99.51KB
  12. LED/keil_LED/Listings/startup_stm32f10x_ld.lst 38.17KB
  13. LED/keil_LED/OBJ/
  14. LED/keil_LED/OBJ/core_cm3.crf 3.85KB
  15. LED/keil_LED/OBJ/core_cm3.d 99B
  16. LED/keil_LED/OBJ/core_cm3.o 10.68KB
  17. LED/keil_LED/OBJ/LED.axf 461.22KB
  18. LED/keil_LED/OBJ/LED.build_log.htm 1.29KB
  19. LED/keil_LED/OBJ/led.crf 338.1KB
  20. LED/keil_LED/OBJ/led.d 1.29KB
  21. LED/keil_LED/OBJ/LED.hex 4.79KB
  22. LED/keil_LED/OBJ/LED.hex.asm 21B
  23. LED/keil_LED/OBJ/LED.htm 34.38KB
  24. LED/keil_LED/OBJ/LED.lnp 941B
  25. LED/keil_LED/OBJ/led.o 371.85KB
  26. LED/keil_LED/OBJ/LED.sct 479B
  27. LED/keil_LED/OBJ/LED_Target 1.dep 46.74KB
  28. LED/keil_LED/OBJ/main.crf 338.4KB
  29. LED/keil_LED/OBJ/main.d 1.35KB
  30. LED/keil_LED/OBJ/main.o 373.2KB
  31. LED/keil_LED/OBJ/misc.crf 338.36KB
  32. LED/keil_LED/OBJ/misc.d 1.34KB
  33. LED/keil_LED/OBJ/misc.o 372.8KB
  34. LED/keil_LED/OBJ/startup_stm32f10x_ld.d 59B
  35. LED/keil_LED/OBJ/startup_stm32f10x_ld.o 5.63KB
  36. LED/keil_LED/OBJ/stm32f10x_adc.crf 345.36KB
  37. LED/keil_LED/OBJ/stm32f10x_adc.d 1.63KB
  38. LED/keil_LED/OBJ/stm32f10x_adc.o 417.86KB
  39. LED/keil_LED/OBJ/stm32f10x_bkp.crf 339.28KB
  40. LED/keil_LED/OBJ/stm32f10x_bkp.d 1.63KB
  41. LED/keil_LED/OBJ/stm32f10x_bkp.o 382.23KB
  42. LED/keil_LED/OBJ/stm32f10x_can.crf 346.93KB
  43. LED/keil_LED/OBJ/stm32f10x_can.d 1.63KB
  44. LED/keil_LED/OBJ/stm32f10x_can.o 403.7KB
  45. LED/keil_LED/OBJ/stm32f10x_cec.crf 339.82KB
  46. LED/keil_LED/OBJ/stm32f10x_cec.d 1.63KB
  47. LED/keil_LED/OBJ/stm32f10x_cec.o 384.72KB
  48. LED/keil_LED/OBJ/stm32f10x_crc.crf 337.92KB
  49. LED/keil_LED/OBJ/stm32f10x_crc.d 1.63KB
  50. LED/keil_LED/OBJ/stm32f10x_crc.o 373.77KB
  51. LED/keil_LED/OBJ/stm32f10x_dac.crf 339.95KB
  52. LED/keil_LED/OBJ/stm32f10x_dac.d 1.63KB
  53. LED/keil_LED/OBJ/stm32f10x_dac.o 382.85KB
  54. LED/keil_LED/OBJ/stm32f10x_dbgmcu.crf 337.72KB
  55. LED/keil_LED/OBJ/stm32f10x_dbgmcu.d 1.73KB
  56. LED/keil_LED/OBJ/stm32f10x_dbgmcu.o 370.02KB
  57. LED/keil_LED/OBJ/stm32f10x_dma.crf 341.39KB
  58. LED/keil_LED/OBJ/stm32f10x_dma.d 1.63KB
  59. LED/keil_LED/OBJ/stm32f10x_dma.o 382.36KB
  60. LED/keil_LED/OBJ/stm32f10x_exti.crf 338.9KB
  61. LED/keil_LED/OBJ/stm32f10x_exti.d 1.67KB
  62. LED/keil_LED/OBJ/stm32f10x_exti.o 376.71KB
  63. LED/keil_LED/OBJ/stm32f10x_flash.crf 345.2KB
  64. LED/keil_LED/OBJ/stm32f10x_flash.d 1.7KB
  65. LED/keil_LED/OBJ/stm32f10x_flash.o 407.2KB
  66. LED/keil_LED/OBJ/stm32f10x_fsmc.crf 343.74KB
  67. LED/keil_LED/OBJ/stm32f10x_fsmc.d 1.67KB
  68. LED/keil_LED/OBJ/stm32f10x_fsmc.o 393.31KB
  69. LED/keil_LED/OBJ/stm32f10x_gpio.crf 341.77KB
  70. LED/keil_LED/OBJ/stm32f10x_gpio.d 1.67KB
  71. LED/keil_LED/OBJ/stm32f10x_gpio.o 392.21KB
  72. LED/keil_LED/OBJ/stm32f10x_i2c.crf 344.15KB
  73. LED/keil_LED/OBJ/stm32f10x_i2c.d 1.63KB
  74. LED/keil_LED/OBJ/stm32f10x_i2c.o 412.22KB
  75. LED/keil_LED/OBJ/stm32f10x_it.crf 338.02KB
  76. LED/keil_LED/OBJ/stm32f10x_it.d 1.58KB
  77. LED/keil_LED/OBJ/stm32f10x_it.o 380.37KB
  78. LED/keil_LED/OBJ/stm32f10x_iwdg.crf 338.02KB
  79. LED/keil_LED/OBJ/stm32f10x_iwdg.d 1.67KB
  80. LED/keil_LED/OBJ/stm32f10x_iwdg.o 373.73KB
  81. LED/keil_LED/OBJ/stm32f10x_pwr.crf 339.18KB
  82. LED/keil_LED/OBJ/stm32f10x_pwr.d 1.63KB
  83. LED/keil_LED/OBJ/stm32f10x_pwr.o 378.27KB
  84. LED/keil_LED/OBJ/stm32f10x_rcc.crf 345.26KB
  85. LED/keil_LED/OBJ/stm32f10x_rcc.d 1.63KB
  86. LED/keil_LED/OBJ/stm32f10x_rcc.o 410.97KB
  87. LED/keil_LED/OBJ/stm32f10x_rtc.crf 339.18KB
  88. LED/keil_LED/OBJ/stm32f10x_rtc.d 1.63KB
  89. LED/keil_LED/OBJ/stm32f10x_rtc.o 384.26KB
  90. LED/keil_LED/OBJ/stm32f10x_sdio.crf 342.37KB
  91. LED/keil_LED/OBJ/stm32f10x_sdio.d 1.67KB
  92. LED/keil_LED/OBJ/stm32f10x_sdio.o 405.97KB
  93. LED/keil_LED/OBJ/stm32f10x_spi.crf 342.24KB
  94. LED/keil_LED/OBJ/stm32f10x_spi.d 1.63KB
  95. LED/keil_LED/OBJ/stm32f10x_spi.o 398.39KB
  96. LED/keil_LED/OBJ/stm32f10x_tim.crf 359.93KB
  97. LED/keil_LED/OBJ/stm32f10x_tim.d 1.63KB
  98. LED/keil_LED/OBJ/stm32f10x_tim.o 493.2KB
  99. LED/keil_LED/OBJ/stm32f10x_usart.crf 343.84KB
  100. LED/keil_LED/OBJ/stm32f10x_usart.d 1.7KB
  101. LED/keil_LED/OBJ/stm32f10x_usart.o 407.23KB
  102. LED/keil_LED/OBJ/stm32f10x_wwdg.crf 338.46KB
  103. LED/keil_LED/OBJ/stm32f10x_wwdg.d 1.67KB
  104. LED/keil_LED/OBJ/stm32f10x_wwdg.o 376.53KB
  105. LED/keil_LED/OBJ/system_stm32f10x.crf 339.49KB
  106. LED/keil_LED/OBJ/system_stm32f10x.d 1.66KB
  107. LED/keil_LED/OBJ/system_stm32f10x.o 372.06KB
  108. LED/keil_LED/Objects/
  109. LED/keil_LED/Objects/core_cm3.crf 3.85KB
  110. LED/keil_LED/Objects/core_cm3.d 107B
  111. LED/keil_LED/Objects/core_cm3.o 10.7KB
  112. LED/keil_LED/Objects/LED.axf 234.45KB
  113. LED/keil_LED/Objects/LED.build_log.htm 2KB
  114. LED/keil_LED/Objects/led.crf 337.41KB
  115. LED/keil_LED/Objects/led.d 1.41KB
  116. LED/keil_LED/Objects/LED.hex 2.81KB
  117. LED/keil_LED/Objects/LED.htm 29.96KB
  118. LED/keil_LED/Objects/LED.lnp 1.04KB
  119. LED/keil_LED/Objects/led.o 366.67KB
  120. LED/keil_LED/Objects/LED.sct 479B
  121. LED/keil_LED/Objects/LED_Target 1.dep 47.08KB
  122. LED/keil_LED/Objects/main.crf 337.97KB
  123. LED/keil_LED/Objects/main.d 1.48KB
  124. LED/keil_LED/Objects/main.o 368.74KB
  125. LED/keil_LED/Objects/misc.crf 338.36KB
  126. LED/keil_LED/Objects/misc.d 1.46KB
  127. LED/keil_LED/Objects/misc.o 372.81KB
  128. LED/keil_LED/Objects/startup_stm32f10x_ld.d 63B
  129. LED/keil_LED/Objects/startup_stm32f10x_ld.o 5.63KB
  130. LED/keil_LED/Objects/stm32f10x_adc.crf 345.36KB
  131. LED/keil_LED/Objects/stm32f10x_adc.d 1.75KB
  132. LED/keil_LED/Objects/stm32f10x_adc.o 417.88KB
  133. LED/keil_LED/Objects/stm32f10x_bkp.crf 339.28KB
  134. LED/keil_LED/Objects/stm32f10x_bkp.d 1.75KB
  135. LED/keil_LED/Objects/stm32f10x_bkp.o 382.24KB
  136. LED/keil_LED/Objects/stm32f10x_can.crf 346.93KB
  137. LED/keil_LED/Objects/stm32f10x_can.d 1.75KB
  138. LED/keil_LED/Objects/stm32f10x_can.o 403.71KB
  139. LED/keil_LED/Objects/stm32f10x_cec.crf 339.82KB
  140. LED/keil_LED/Objects/stm32f10x_cec.d 1.75KB
  141. LED/keil_LED/Objects/stm32f10x_cec.o 384.73KB
  142. LED/keil_LED/Objects/stm32f10x_crc.crf 337.92KB
  143. LED/keil_LED/Objects/stm32f10x_crc.d 1.75KB
  144. LED/keil_LED/Objects/stm32f10x_crc.o 373.78KB
  145. LED/keil_LED/Objects/stm32f10x_dac.crf 339.95KB
  146. LED/keil_LED/Objects/stm32f10x_dac.d 1.75KB
  147. LED/keil_LED/Objects/stm32f10x_dac.o 382.86KB
  148. LED/keil_LED/Objects/stm32f10x_dbgmcu.crf 337.72KB
  149. LED/keil_LED/Objects/stm32f10x_dbgmcu.d 1.85KB
  150. LED/keil_LED/Objects/stm32f10x_dbgmcu.o 370.04KB
  151. LED/keil_LED/Objects/stm32f10x_dma.crf 341.39KB
  152. LED/keil_LED/Objects/stm32f10x_dma.d 1.75KB
  153. LED/keil_LED/Objects/stm32f10x_dma.o 382.37KB
  154. LED/keil_LED/Objects/stm32f10x_exti.crf 338.9KB
  155. LED/keil_LED/Objects/stm32f10x_exti.d 1.79KB
  156. LED/keil_LED/Objects/stm32f10x_exti.o 376.72KB
  157. LED/keil_LED/Objects/stm32f10x_flash.crf 345.2KB
  158. LED/keil_LED/Objects/stm32f10x_flash.d 1.82KB
  159. LED/keil_LED/Objects/stm32f10x_flash.o 407.21KB
  160. LED/keil_LED/Objects/stm32f10x_fsmc.crf 343.74KB
  161. LED/keil_LED/Objects/stm32f10x_fsmc.d 1.79KB
  162. LED/keil_LED/Objects/stm32f10x_fsmc.o 393.32KB
  163. LED/keil_LED/Objects/stm32f10x_gpio.crf 341.77KB
  164. LED/keil_LED/Objects/stm32f10x_gpio.d 1.79KB
  165. LED/keil_LED/Objects/stm32f10x_gpio.o 392.22KB
  166. LED/keil_LED/Objects/stm32f10x_i2c.crf 344.15KB
  167. LED/keil_LED/Objects/stm32f10x_i2c.d 1.75KB
  168. LED/keil_LED/Objects/stm32f10x_i2c.o 412.23KB
  169. LED/keil_LED/Objects/stm32f10x_it.crf 338.02KB
  170. LED/keil_LED/Objects/stm32f10x_it.d 1.7KB
  171. LED/keil_LED/Objects/stm32f10x_it.o 380.38KB
  172. LED/keil_LED/Objects/stm32f10x_iwdg.crf 338.02KB
  173. LED/keil_LED/Objects/stm32f10x_iwdg.d 1.79KB
  174. LED/keil_LED/Objects/stm32f10x_iwdg.o 373.74KB
  175. LED/keil_LED/Objects/stm32f10x_pwr.crf 339.18KB
  176. LED/keil_LED/Objects/stm32f10x_pwr.d 1.75KB
  177. LED/keil_LED/Objects/stm32f10x_pwr.o 378.28KB
  178. LED/keil_LED/Objects/stm32f10x_rcc.crf 345.26KB
  179. LED/keil_LED/Objects/stm32f10x_rcc.d 1.75KB
  180. LED/keil_LED/Objects/stm32f10x_rcc.o 410.98KB
  181. LED/keil_LED/Objects/stm32f10x_rtc.crf 339.18KB
  182. LED/keil_LED/Objects/stm32f10x_rtc.d 1.75KB
  183. LED/keil_LED/Objects/stm32f10x_rtc.o 384.27KB
  184. LED/keil_LED/Objects/stm32f10x_sdio.crf 342.37KB
  185. LED/keil_LED/Objects/stm32f10x_sdio.d 1.79KB
  186. LED/keil_LED/Objects/stm32f10x_sdio.o 405.98KB
  187. LED/keil_LED/Objects/stm32f10x_spi.crf 342.24KB
  188. LED/keil_LED/Objects/stm32f10x_spi.d 1.75KB
  189. LED/keil_LED/Objects/stm32f10x_spi.o 398.4KB
  190. LED/keil_LED/Objects/stm32f10x_tim.crf 359.93KB
  191. LED/keil_LED/Objects/stm32f10x_tim.d 1.75KB
  192. LED/keil_LED/Objects/stm32f10x_tim.o 493.21KB
  193. LED/keil_LED/Objects/stm32f10x_usart.crf 343.84KB
  194. LED/keil_LED/Objects/stm32f10x_usart.d 1.82KB
  195. LED/keil_LED/Objects/stm32f10x_usart.o 407.25KB
  196. LED/keil_LED/Objects/stm32f10x_wwdg.crf 338.46KB
  197. LED/keil_LED/Objects/stm32f10x_wwdg.d 1.79KB
  198. LED/keil_LED/Objects/stm32f10x_wwdg.o 376.54KB
  199. LED/keil_LED/Objects/system_stm32f10x.crf 339.49KB
  200. LED/keil_LED/Objects/system_stm32f10x.d 1.77KB
  201. LED/keil_LED/Objects/system_stm32f10x.o 372.07KB
  202. LED/keil_LED/STM32LIB/
  203. LED/keil_LED/STM32LIB/inc/
  204. LED/keil_LED/STM32LIB/inc/misc.h 8.77KB
  205. LED/keil_LED/STM32LIB/inc/stm32f10x_adc.h 21.18KB
  206. LED/keil_LED/STM32LIB/inc/stm32f10x_bkp.h 7.38KB
  207. LED/keil_LED/STM32LIB/inc/stm32f10x_can.h 26.91KB
  208. LED/keil_LED/STM32LIB/inc/stm32f10x_cec.h 6.42KB
  209. LED/keil_LED/STM32LIB/inc/stm32f10x_crc.h 2.11KB
  210. LED/keil_LED/STM32LIB/inc/stm32f10x_dac.h 14.88KB
  211. LED/keil_LED/STM32LIB/inc/stm32f10x_dbgmcu.h 3.73KB
  212. LED/keil_LED/STM32LIB/inc/stm32f10x_dma.h 20.27KB
  213. LED/keil_LED/STM32LIB/inc/stm32f10x_exti.h 6.66KB
  214. LED/keil_LED/STM32LIB/inc/stm32f10x_flash.h 24.85KB
  215. LED/keil_LED/STM32LIB/inc/stm32f10x_fsmc.h 26.38KB
  216. LED/keil_LED/STM32LIB/inc/stm32f10x_gpio.h 19.7KB
  217. LED/keil_LED/STM32LIB/inc/stm32f10x_i2c.h 29.33KB
  218. LED/keil_LED/STM32LIB/inc/stm32f10x_iwdg.h 3.74KB
  219. LED/keil_LED/STM32LIB/inc/stm32f10x_pwr.h 4.28KB
  220. LED/keil_LED/STM32LIB/inc/stm32f10x_rcc.h 29.74KB
  221. LED/keil_LED/STM32LIB/inc/stm32f10x_rtc.h 3.77KB
  222. LED/keil_LED/STM32LIB/inc/stm32f10x_sdio.h 21.35KB
  223. LED/keil_LED/STM32LIB/inc/stm32f10x_spi.h 17.31KB
  224. LED/keil_LED/STM32LIB/inc/stm32f10x_tim.h 51.2KB
  225. LED/keil_LED/STM32LIB/inc/stm32f10x_usart.h 16.16KB
  226. LED/keil_LED/STM32LIB/inc/stm32f10x_wwdg.h 2.9KB
  227. LED/keil_LED/STM32LIB/src/
  228. LED/keil_LED/STM32LIB/src/misc.c 6.88KB
  229. LED/keil_LED/STM32LIB/src/stm32f10x_adc.c 46.09KB
  230. LED/keil_LED/STM32LIB/src/stm32f10x_bkp.c 8.26KB
  231. LED/keil_LED/STM32LIB/src/stm32f10x_can.c 44.05KB
  232. LED/keil_LED/STM32LIB/src/stm32f10x_cec.c 11.38KB
  233. LED/keil_LED/STM32LIB/src/stm32f10x_crc.c 3.27KB
  234. LED/keil_LED/STM32LIB/src/stm32f10x_dac.c 18.64KB
  235. LED/keil_LED/STM32LIB/src/stm32f10x_dbgmcu.c 5.03KB
  236. LED/keil_LED/STM32LIB/src/stm32f10x_dma.c 28.91KB
  237. LED/keil_LED/STM32LIB/src/stm32f10x_exti.c 6.8KB
  238. LED/keil_LED/STM32LIB/src/stm32f10x_flash.c 61.08KB
  239. LED/keil_LED/STM32LIB/src/stm32f10x_fsmc.c 34.65KB
  240. LED/keil_LED/STM32LIB/src/stm32f10x_gpio.c 22.68KB
  241. LED/keil_LED/STM32LIB/src/stm32f10x_i2c.c 44.71KB
  242. LED/keil_LED/STM32LIB/src/stm32f10x_iwdg.c 4.8KB
  243. LED/keil_LED/STM32LIB/src/stm32f10x_pwr.c 8.55KB
  244. LED/keil_LED/STM32LIB/src/stm32f10x_rcc.c 50.07KB
  245. LED/keil_LED/STM32LIB/src/stm32f10x_rtc.c 8.4KB
  246. LED/keil_LED/STM32LIB/src/stm32f10x_sdio.c 28.25KB
  247. LED/keil_LED/STM32LIB/src/stm32f10x_spi.c 29.52KB
  248. LED/keil_LED/STM32LIB/src/stm32f10x_tim.c 106.6KB
  249. LED/keil_LED/STM32LIB/src/stm32f10x_usart.c 37.41KB
  250. LED/keil_LED/STM32LIB/src/stm32f10x_wwdg.c 5.6KB
  251. LED/keil_LED/USER/
  252. LED/keil_LED/USER/led.c 1.04KB
  253. LED/keil_LED/USER/led.h 181B
  254. LED/keil_LED/USER/led.h.bak
  255. LED/keil_LED/USER/main.c 580B
  256. LED/keil_LED/USER/stm32f10x.h 619.08KB
  257. LED/keil_LED/USER/stm32f10x_conf.h 3.18KB
  258. LED/keil_LED/USER/stm32f10x_it.c 4.71KB
  259. LED/keil_LED/USER/stm32f10x_it.h 2.11KB
  260. LED/keil_LED/USER/system_stm32f10x.c 35.69KB
  261. LED/keil_LED/USER/system_stm32f10x.h 2.04KB
  262. LED/proteus_LED/
  263. LED/proteus_LED/Backup Of LED.pdsbak 83.35KB
  264. LED/proteus_LED/Last Loaded LED.pdsbak 85.01KB
  265. LED/proteus_LED/LED.pdsprj 92.9KB
  266. LED/proteus_LED/LED.pdsprj.DESKTOP-J4OK9VH.1.workspace 13.72KB
  267. LED/proteus_LED/LED.pdsprj.MOHEN.mym35.workspace 2.02KB
  268. LED/SI/
  269. LED/SI/LED.si4project/
  270. LED/SI/LED.si4project/LED.bookmarks.xml 162B
  271. LED/SI/LED.si4project/LED.siproj 19.4KB
  272. LED/SI/LED.si4project/LED.siproj_settings.xml 509B
  273. LED/SI/LED.si4project/LED.sip_sym 1.8MB
  274. LED/SI/LED.si4project/LED.sip_xab 872KB
  275. LED/SI/LED.si4project/LED.sip_xad 8.84KB
  276. LED/SI/LED.si4project/LED.sip_xc 117.12KB
  277. LED/SI/LED.si4project/LED.sip_xf 117.12KB
  278. LED/SI/LED.si4project/LED.sip_xm 236B
  279. LED/SI/LED.si4project/LED.sip_xr 117.12KB
  280. LED/SI/LED.si4project/LED.sip_xsb 244KB
  281. LED/SI/LED.si4project/LED.sip_xsd 2.7KB
  282. LED/SI/LED.si4project/LED.siwork 26.35KB
  283. LED/SI/LED.si4project/LED.snippets.xml 170B
0评论
提交 加载更多评论
其他资源 stm32f103c8t6+8位数码管,使用proteus仿真+keil编译
实验要求 使用proteus仿真+keil编译 用Proteus设计一个STM32最小系统板+8位数码管实验原理图,仿真运行。 以STM32最小系统核心板(STM32F103C8T6)编写程序驱动数码管,显示0-9数字。 用stm32标准库编写,有必要的注释。
NPOI2.5.6版本
NPOI是指构建在POI 3.x版本之上的一个程序,NPOI可以在没有安装Office的情况下对Word或Excel文档进行读写操作。 NPOI是一个开源的C#读写Excel、WORD等微软OLE2组件文档的项目。NPOI之所以强大,并不是因为它支持导出Excel,而是因为它支持导入Excel,并能“理解”OLE2文档结构,这也是其他一些Excel读写库比较弱的方面。通常,读入并理解结构远比导出来得复杂,因为导入你必须假设一切情况都是可能的,而生成你只要保证满足你自己需求就可以了,如果把导入需求和生成需求比做两个集合,那么生成需求通常都是导入需求的子集,这一规律不仅体现在Excel读写库中,也体现在pdf读写库中,目前市面上大部分的pdf库仅支持生成,不支持导入。
NPOI2.4.1使用 NPOI 你就可以在没有安装 Office 或者相应环境的机器上对 WORD/EXCEL 文档进行读写
NPOI2.4.1使用 NPOI 你就可以在没有安装 Office 或者相应环境的机器上对 WORD/EXCEL 文档进行读写
stm32f103c8t6按键数码管编程+proteus原理图
实验要求 使用proteus仿真+keil编译 用Proteus设计一个STM32最小系统板+按键+数码管实验原理图,仿真运行。 以STM32最小系统核心板(STM32F103C8T6)编写程序驱动数码管,显示0-9数字,通过按键控制数字显示,每按一次数字加1,到9返回0。 用stm32标准库编写,有必要的注释。
Office_Tool_with_runtime_v10.13.10.0_x64.zip
Office_Tool_with_runtime_v10.13.10.0_x64.zip
码头货柜管理系统 JAVA+Vue+SpringBoot+MySQL
基于Vue.js和SpringBoot的码头货柜管理系统,分为用户前台和管理后台,可以给管理员、普通用户角色使用,包括货柜信息模块、船只信息模块、路线信息模块、新闻管理模块和系统基础模块,项目编号T265。 项目录屏:https://www.bilibili.com/video/BV1pW421d7hR 启动教程:https://www.bilibili.com/video/BV1pW4y1P7GR 项目讲解视频:https://space.bilibili.com/417412814/channel/collectiondetail?sid=2242844
大学生科创项目 JAVA+Vue+SpringBoot+MySQL
基于Vue.js和SpringBoot的大学生科创项目,分为用户前台和管理后台,可以给管理员、教师、学生角色使用,包括科研项目模块、公告信息模块、论坛管理模块、教师管理模块、学生管理模块和系统基础模块,项目编号T264。 项目录屏:https://www.bilibili.com/video/BV1DZ421K7hA 启动教程:https://www.bilibili.com/video/BV1pW4y1P7GR 项目讲解视频:https://space.bilibili.com/417412814/channel/collectiondetail?sid=2242844
农产品直卖平台 JAVA+Vue+SpringBoot+MySQL
基于Vue.js和SpringBoot的农产品直卖平台,分为用户前台和管理后台,可以给管理员、商家、普通用户角色使用,包括农产品模块、公告信息模块、商家管理模块、用户管理模块和系统基础模块,项目编号T263。 项目录屏:https://www.bilibili.com/video/BV18b421E74y 启动教程:https://www.bilibili.com/video/BV1pW4y1P7GR 项目讲解视频:https://space.bilibili.com/417412814/channel/collectiondetail?sid=2242844