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

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

GPIO输出模式之LED闪烁应用案例

硬件开发 5.35MB 9 需要积分: 1
立即下载

资源介绍:

本案例实现了一个通过控制GPIO的PA0引脚输出高低电平实现LED闪烁的功能。
/** ****************************************************************************** * @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

资源文件列表:

3-1 LED闪烁.zip 大约有173个文件
  1. 3-1 LED闪烁/
  2. 3-1 LED闪烁/DebugConfig/
  3. 3-1 LED闪烁/DebugConfig/Target_1_STM32F103C8_1.0.0.dbgconf 6.79KB
  4. 3-1 LED闪烁/Library/
  5. 3-1 LED闪烁/Library/misc.c 6.88KB
  6. 3-1 LED闪烁/Library/misc.h 8.77KB
  7. 3-1 LED闪烁/Library/stm32f10x_adc.c 46.09KB
  8. 3-1 LED闪烁/Library/stm32f10x_adc.h 21.18KB
  9. 3-1 LED闪烁/Library/stm32f10x_bkp.c 8.26KB
  10. 3-1 LED闪烁/Library/stm32f10x_bkp.h 7.38KB
  11. 3-1 LED闪烁/Library/stm32f10x_can.c 44.05KB
  12. 3-1 LED闪烁/Library/stm32f10x_can.h 26.91KB
  13. 3-1 LED闪烁/Library/stm32f10x_cec.c 11.38KB
  14. 3-1 LED闪烁/Library/stm32f10x_cec.h 6.42KB
  15. 3-1 LED闪烁/Library/stm32f10x_crc.c 3.27KB
  16. 3-1 LED闪烁/Library/stm32f10x_crc.h 2.11KB
  17. 3-1 LED闪烁/Library/stm32f10x_dac.c 18.64KB
  18. 3-1 LED闪烁/Library/stm32f10x_dac.h 14.88KB
  19. 3-1 LED闪烁/Library/stm32f10x_dbgmcu.c 5.03KB
  20. 3-1 LED闪烁/Library/stm32f10x_dbgmcu.h 3.73KB
  21. 3-1 LED闪烁/Library/stm32f10x_dma.c 28.91KB
  22. 3-1 LED闪烁/Library/stm32f10x_dma.h 20.27KB
  23. 3-1 LED闪烁/Library/stm32f10x_exti.c 6.8KB
  24. 3-1 LED闪烁/Library/stm32f10x_exti.h 6.66KB
  25. 3-1 LED闪烁/Library/stm32f10x_flash.c 61.08KB
  26. 3-1 LED闪烁/Library/stm32f10x_flash.h 24.85KB
  27. 3-1 LED闪烁/Library/stm32f10x_fsmc.c 34.65KB
  28. 3-1 LED闪烁/Library/stm32f10x_fsmc.h 26.38KB
  29. 3-1 LED闪烁/Library/stm32f10x_gpio.c 22.68KB
  30. 3-1 LED闪烁/Library/stm32f10x_gpio.h 19.7KB
  31. 3-1 LED闪烁/Library/stm32f10x_i2c.c 44.71KB
  32. 3-1 LED闪烁/Library/stm32f10x_i2c.h 29.33KB
  33. 3-1 LED闪烁/Library/stm32f10x_iwdg.c 4.8KB
  34. 3-1 LED闪烁/Library/stm32f10x_iwdg.h 3.74KB
  35. 3-1 LED闪烁/Library/stm32f10x_pwr.c 8.55KB
  36. 3-1 LED闪烁/Library/stm32f10x_pwr.h 4.28KB
  37. 3-1 LED闪烁/Library/stm32f10x_rcc.c 50.07KB
  38. 3-1 LED闪烁/Library/stm32f10x_rcc.h 29.74KB
  39. 3-1 LED闪烁/Library/stm32f10x_rtc.c 8.4KB
  40. 3-1 LED闪烁/Library/stm32f10x_rtc.h 3.77KB
  41. 3-1 LED闪烁/Library/stm32f10x_sdio.c 28.25KB
  42. 3-1 LED闪烁/Library/stm32f10x_sdio.h 21.35KB
  43. 3-1 LED闪烁/Library/stm32f10x_spi.c 29.52KB
  44. 3-1 LED闪烁/Library/stm32f10x_spi.h 17.31KB
  45. 3-1 LED闪烁/Library/stm32f10x_tim.c 106.6KB
  46. 3-1 LED闪烁/Library/stm32f10x_tim.h 51.2KB
  47. 3-1 LED闪烁/Library/stm32f10x_usart.c 37.41KB
  48. 3-1 LED闪烁/Library/stm32f10x_usart.h 16.16KB
  49. 3-1 LED闪烁/Library/stm32f10x_wwdg.c 5.6KB
  50. 3-1 LED闪烁/Library/stm32f10x_wwdg.h 2.9KB
  51. 3-1 LED闪烁/Listings/
  52. 3-1 LED闪烁/Listings/Project.map 97.93KB
  53. 3-1 LED闪烁/Listings/startup_stm32f10x_md.lst 40.48KB
  54. 3-1 LED闪烁/Objects/
  55. 3-1 LED闪烁/Objects/Project.axf 256.39KB
  56. 3-1 LED闪烁/Objects/Project.build_log.htm 2.48KB
  57. 3-1 LED闪烁/Objects/Project.htm 33KB
  58. 3-1 LED闪烁/Objects/Project.lnp 1.07KB
  59. 3-1 LED闪烁/Objects/Project.sct 479B
  60. 3-1 LED闪烁/Objects/Project_Target 1.dep 46.57KB
  61. 3-1 LED闪烁/Objects/core_cm3.crf 3.85KB
  62. 3-1 LED闪烁/Objects/core_cm3.d 108B
  63. 3-1 LED闪烁/Objects/core_cm3.o 10.8KB
  64. 3-1 LED闪烁/Objects/delay.crf 338.11KB
  65. 3-1 LED闪烁/Objects/delay.d 1.34KB
  66. 3-1 LED闪烁/Objects/delay.o 370.34KB
  67. 3-1 LED闪烁/Objects/main.crf 338.48KB
  68. 3-1 LED闪烁/Objects/main.d 1.34KB
  69. 3-1 LED闪烁/Objects/main.o 369.09KB
  70. 3-1 LED闪烁/Objects/misc.crf 338.79KB
  71. 3-1 LED闪烁/Objects/misc.d 1.34KB
  72. 3-1 LED闪烁/Objects/misc.o 373.32KB
  73. 3-1 LED闪烁/Objects/startup_stm32f10x_md.d 64B
  74. 3-1 LED闪烁/Objects/startup_stm32f10x_md.o 5.85KB
  75. 3-1 LED闪烁/Objects/stm32f10x_adc.crf 345.79KB
  76. 3-1 LED闪烁/Objects/stm32f10x_adc.d 1.63KB
  77. 3-1 LED闪烁/Objects/stm32f10x_adc.o 418.28KB
  78. 3-1 LED闪烁/Objects/stm32f10x_bkp.crf 339.7KB
  79. 3-1 LED闪烁/Objects/stm32f10x_bkp.d 1.63KB
  80. 3-1 LED闪烁/Objects/stm32f10x_bkp.o 382.72KB
  81. 3-1 LED闪烁/Objects/stm32f10x_can.crf 347.36KB
  82. 3-1 LED闪烁/Objects/stm32f10x_can.d 1.63KB
  83. 3-1 LED闪烁/Objects/stm32f10x_can.o 404.17KB
  84. 3-1 LED闪烁/Objects/stm32f10x_cec.crf 340.24KB
  85. 3-1 LED闪烁/Objects/stm32f10x_cec.d 1.63KB
  86. 3-1 LED闪烁/Objects/stm32f10x_cec.o 385.21KB
  87. 3-1 LED闪烁/Objects/stm32f10x_crc.crf 338.35KB
  88. 3-1 LED闪烁/Objects/stm32f10x_crc.d 1.63KB
  89. 3-1 LED闪烁/Objects/stm32f10x_crc.o 374.28KB
  90. 3-1 LED闪烁/Objects/stm32f10x_dac.crf 340.37KB
  91. 3-1 LED闪烁/Objects/stm32f10x_dac.d 1.63KB
  92. 3-1 LED闪烁/Objects/stm32f10x_dac.o 383.35KB
  93. 3-1 LED闪烁/Objects/stm32f10x_dbgmcu.crf 338.14KB
  94. 3-1 LED闪烁/Objects/stm32f10x_dbgmcu.d 1.73KB
  95. 3-1 LED闪烁/Objects/stm32f10x_dbgmcu.o 370.54KB
  96. 3-1 LED闪烁/Objects/stm32f10x_dma.crf 341.82KB
  97. 3-1 LED闪烁/Objects/stm32f10x_dma.d 1.63KB
  98. 3-1 LED闪烁/Objects/stm32f10x_dma.o 382.85KB
  99. 3-1 LED闪烁/Objects/stm32f10x_exti.crf 339.33KB
  100. 3-1 LED闪烁/Objects/stm32f10x_exti.d 1.67KB
  101. 3-1 LED闪烁/Objects/stm32f10x_exti.o 377.22KB
  102. 3-1 LED闪烁/Objects/stm32f10x_flash.crf 345.63KB
  103. 3-1 LED闪烁/Objects/stm32f10x_flash.d 1.7KB
  104. 3-1 LED闪烁/Objects/stm32f10x_flash.o 407.64KB
  105. 3-1 LED闪烁/Objects/stm32f10x_fsmc.crf 344.17KB
  106. 3-1 LED闪烁/Objects/stm32f10x_fsmc.d 1.67KB
  107. 3-1 LED闪烁/Objects/stm32f10x_fsmc.o 393.78KB
  108. 3-1 LED闪烁/Objects/stm32f10x_gpio.crf 342.2KB
  109. 3-1 LED闪烁/Objects/stm32f10x_gpio.d 1.67KB
  110. 3-1 LED闪烁/Objects/stm32f10x_gpio.o 392.69KB
  111. 3-1 LED闪烁/Objects/stm32f10x_i2c.crf 344.58KB
  112. 3-1 LED闪烁/Objects/stm32f10x_i2c.d 1.63KB
  113. 3-1 LED闪烁/Objects/stm32f10x_i2c.o 412.64KB
  114. 3-1 LED闪烁/Objects/stm32f10x_it.crf 338.27KB
  115. 3-1 LED闪烁/Objects/stm32f10x_it.d 1.6KB
  116. 3-1 LED闪烁/Objects/stm32f10x_it.o 377.83KB
  117. 3-1 LED闪烁/Objects/stm32f10x_iwdg.crf 338.45KB
  118. 3-1 LED闪烁/Objects/stm32f10x_iwdg.d 1.67KB
  119. 3-1 LED闪烁/Objects/stm32f10x_iwdg.o 374.25KB
  120. 3-1 LED闪烁/Objects/stm32f10x_pwr.crf 339.61KB
  121. 3-1 LED闪烁/Objects/stm32f10x_pwr.d 1.63KB
  122. 3-1 LED闪烁/Objects/stm32f10x_pwr.o 378.77KB
  123. 3-1 LED闪烁/Objects/stm32f10x_rcc.crf 345.69KB
  124. 3-1 LED闪烁/Objects/stm32f10x_rcc.d 1.63KB
  125. 3-1 LED闪烁/Objects/stm32f10x_rcc.o 411.41KB
  126. 3-1 LED闪烁/Objects/stm32f10x_rtc.crf 339.61KB
  127. 3-1 LED闪烁/Objects/stm32f10x_rtc.d 1.63KB
  128. 3-1 LED闪烁/Objects/stm32f10x_rtc.o 384.75KB
  129. 3-1 LED闪烁/Objects/stm32f10x_sdio.crf 342.8KB
  130. 3-1 LED闪烁/Objects/stm32f10x_sdio.d 1.67KB
  131. 3-1 LED闪烁/Objects/stm32f10x_sdio.o 406.41KB
  132. 3-1 LED闪烁/Objects/stm32f10x_spi.crf 342.67KB
  133. 3-1 LED闪烁/Objects/stm32f10x_spi.d 1.63KB
  134. 3-1 LED闪烁/Objects/stm32f10x_spi.o 398.85KB
  135. 3-1 LED闪烁/Objects/stm32f10x_tim.crf 360.35KB
  136. 3-1 LED闪烁/Objects/stm32f10x_tim.d 1.63KB
  137. 3-1 LED闪烁/Objects/stm32f10x_tim.o 493.48KB
  138. 3-1 LED闪烁/Objects/stm32f10x_usart.crf 344.27KB
  139. 3-1 LED闪烁/Objects/stm32f10x_usart.d 1.7KB
  140. 3-1 LED闪烁/Objects/stm32f10x_usart.o 407.69KB
  141. 3-1 LED闪烁/Objects/stm32f10x_wwdg.crf 338.89KB
  142. 3-1 LED闪烁/Objects/stm32f10x_wwdg.d 1.67KB
  143. 3-1 LED闪烁/Objects/stm32f10x_wwdg.o 377.05KB
  144. 3-1 LED闪烁/Objects/system_stm32f10x.crf 339.93KB
  145. 3-1 LED闪烁/Objects/system_stm32f10x.d 1.67KB
  146. 3-1 LED闪烁/Objects/system_stm32f10x.o 372.69KB
  147. 3-1 LED闪烁/Project.uvguix.Admin 89.21KB
  148. 3-1 LED闪烁/Project.uvguix.Jeff 86.33KB
  149. 3-1 LED闪烁/Project.uvoptx 27.92KB
  150. 3-1 LED闪烁/Project.uvprojx 24.42KB
  151. 3-1 LED闪烁/Start/
  152. 3-1 LED闪烁/Start/core_cm3.c 16.87KB
  153. 3-1 LED闪烁/Start/core_cm3.h 83.71KB
  154. 3-1 LED闪烁/Start/startup_stm32f10x_cl.s 15.4KB
  155. 3-1 LED闪烁/Start/startup_stm32f10x_hd.s 15.14KB
  156. 3-1 LED闪烁/Start/startup_stm32f10x_hd_vl.s 15.32KB
  157. 3-1 LED闪烁/Start/startup_stm32f10x_ld.s 12.09KB
  158. 3-1 LED闪烁/Start/startup_stm32f10x_ld_vl.s 13.34KB
  159. 3-1 LED闪烁/Start/startup_stm32f10x_md.s 12.47KB
  160. 3-1 LED闪烁/Start/startup_stm32f10x_md_vl.s 13.74KB
  161. 3-1 LED闪烁/Start/startup_stm32f10x_xl.s 15.58KB
  162. 3-1 LED闪烁/Start/stm32f10x.h 619.08KB
  163. 3-1 LED闪烁/Start/system_stm32f10x.c 35.7KB
  164. 3-1 LED闪烁/Start/system_stm32f10x.h 2.04KB
  165. 3-1 LED闪烁/System/
  166. 3-1 LED闪烁/System/Delay.c 838B
  167. 3-1 LED闪烁/System/Delay.h 135B
  168. 3-1 LED闪烁/User/
  169. 3-1 LED闪烁/User/main.c 797B
  170. 3-1 LED闪烁/User/stm32f10x_conf.h 3.18KB
  171. 3-1 LED闪烁/User/stm32f10x_it.c 4.3KB
  172. 3-1 LED闪烁/User/stm32f10x_it.h 2.04KB
  173. 3-1 LED闪烁/keilkill.bat 399B
0评论
提交 加载更多评论
其他资源 Wind Spirit Moon Shadow Modifier
Wind Spirit Moon Shadow Modifier
vue使用docxtemplater生成docx在线预览数据格式及.docx示例
vue使用docxtemplater生成docx在线预览数据格式及.docx示例
vue使用docxtemplater生成docx在线预览数据格式及.docx示例
将Json数据保存到文件中
将Json数据保存到文件中
A*算法、D*算法求机器人三维路径规划问题
机器人三维路径规划问题涉及在三维空间中为机器人规划出一条从起点到终点的最优路径,同时需要避开各种障碍物,并满足一定的性能指标。要实现这一目标,不仅需要对环境进行精确建模,还需要运用高效的搜索和优化算法。 A*算法是一种用于在图中找到从起始节点到目标节点的最短路径的启发式搜索算法,它结合了Dijkstra算法的确保性(保证找到一条最短路径)和贪心算法的高效性(快速找到目标)。
坐标系相关的图像.zip
coordinate_systems表示坐标系的 Mobjects。 类:包括 1.轴:创建一组轴。 2.复杂平面:专门用于复数。 CoordinateSystem:Axes 和 NumberPlane 的抽象基类。 数字平面:创建具有背景线的笛卡尔平面。 极地平面:创建带有背景线的极坐标平面。 三大数据共享技术 (ThreeDAx):一组 3 维轴。
2500254556全能卸载工具_HiBit Uninstaller Portable 3.1.20 (2).zip
2500254556全能卸载工具_HiBit Uninstaller Portable 3.1.20 (2).zip
极光推送SDK5.3.0release
极光推送SDK5.3.0release
NSCBx1.0.1b魔改整合nsp密钥18.0.1.zip
NSCBx1.0.1b魔改整合nsp密钥18.0.1.zip