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

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

stm32实现简易示波器,利用iic0.96oled显示屏以及adc

硬件开发 6.55MB 15 需要积分: 1
立即下载

资源介绍:

stm32实现简易示波器,利用iic0.96oled显示屏以及adc
/** ****************************************************************************** * @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

资源文件列表:

stm32简易示波器.zip 大约有200个文件
  1. stm32简易示波器/DebugConfig/
  2. stm32简易示波器/DebugConfig/Target_1_STM32F103C8_1.0.0.dbgconf 6.79KB
  3. stm32简易示波器/EventRecorderStub.scvd 339B
  4. stm32简易示波器/Hardware/
  5. stm32简易示波器/Hardware/AD.c 5.34KB
  6. stm32简易示波器/Hardware/AD.h 177B
  7. stm32简易示波器/Hardware/Encoder.c 1.79KB
  8. stm32简易示波器/Hardware/Encoder.h 108B
  9. stm32简易示波器/Hardware/Key.c 1.01KB
  10. stm32简易示波器/Hardware/Key.h 217B
  11. stm32简易示波器/Hardware/OLED.c 10.4KB
  12. stm32简易示波器/Hardware/OLED.h 945B
  13. stm32简易示波器/Hardware/OLED_Font.h 8.94KB
  14. stm32简易示波器/Hardware/WaveForm.c 3.7KB
  15. stm32简易示波器/Hardware/WaveForm.h 482B
  16. stm32简易示波器/Library/
  17. stm32简易示波器/Library/misc.c 6.88KB
  18. stm32简易示波器/Library/misc.h 8.77KB
  19. stm32简易示波器/Library/stm32f10x_adc.c 46.09KB
  20. stm32简易示波器/Library/stm32f10x_adc.h 21.18KB
  21. stm32简易示波器/Library/stm32f10x_bkp.c 8.26KB
  22. stm32简易示波器/Library/stm32f10x_bkp.h 7.38KB
  23. stm32简易示波器/Library/stm32f10x_can.c 44.05KB
  24. stm32简易示波器/Library/stm32f10x_can.h 26.91KB
  25. stm32简易示波器/Library/stm32f10x_cec.c 11.38KB
  26. stm32简易示波器/Library/stm32f10x_cec.h 6.42KB
  27. stm32简易示波器/Library/stm32f10x_crc.c 3.27KB
  28. stm32简易示波器/Library/stm32f10x_crc.h 2.11KB
  29. stm32简易示波器/Library/stm32f10x_dac.c 18.64KB
  30. stm32简易示波器/Library/stm32f10x_dac.h 14.88KB
  31. stm32简易示波器/Library/stm32f10x_dbgmcu.c 5.03KB
  32. stm32简易示波器/Library/stm32f10x_dbgmcu.h 3.73KB
  33. stm32简易示波器/Library/stm32f10x_dma.c 28.91KB
  34. stm32简易示波器/Library/stm32f10x_dma.h 20.27KB
  35. stm32简易示波器/Library/stm32f10x_exti.c 6.8KB
  36. stm32简易示波器/Library/stm32f10x_exti.h 6.66KB
  37. stm32简易示波器/Library/stm32f10x_flash.c 61.08KB
  38. stm32简易示波器/Library/stm32f10x_flash.h 24.85KB
  39. stm32简易示波器/Library/stm32f10x_fsmc.c 34.65KB
  40. stm32简易示波器/Library/stm32f10x_fsmc.h 26.38KB
  41. stm32简易示波器/Library/stm32f10x_gpio.c 22.68KB
  42. stm32简易示波器/Library/stm32f10x_gpio.h 19.7KB
  43. stm32简易示波器/Library/stm32f10x_i2c.c 44.71KB
  44. stm32简易示波器/Library/stm32f10x_i2c.h 29.33KB
  45. stm32简易示波器/Library/stm32f10x_iwdg.c 4.8KB
  46. stm32简易示波器/Library/stm32f10x_iwdg.h 3.74KB
  47. stm32简易示波器/Library/stm32f10x_pwr.c 8.55KB
  48. stm32简易示波器/Library/stm32f10x_pwr.h 4.28KB
  49. stm32简易示波器/Library/stm32f10x_rcc.c 50.07KB
  50. stm32简易示波器/Library/stm32f10x_rcc.h 29.74KB
  51. stm32简易示波器/Library/stm32f10x_rtc.c 8.4KB
  52. stm32简易示波器/Library/stm32f10x_rtc.h 3.77KB
  53. stm32简易示波器/Library/stm32f10x_sdio.c 28.25KB
  54. stm32简易示波器/Library/stm32f10x_sdio.h 21.35KB
  55. stm32简易示波器/Library/stm32f10x_spi.c 29.52KB
  56. stm32简易示波器/Library/stm32f10x_spi.h 17.31KB
  57. stm32简易示波器/Library/stm32f10x_tim.c 106.6KB
  58. stm32简易示波器/Library/stm32f10x_tim.h 51.2KB
  59. stm32简易示波器/Library/stm32f10x_usart.c 37.41KB
  60. stm32简易示波器/Library/stm32f10x_usart.h 16.16KB
  61. stm32简易示波器/Library/stm32f10x_wwdg.c 5.6KB
  62. stm32简易示波器/Library/stm32f10x_wwdg.h 2.9KB
  63. stm32简易示波器/Listings/
  64. stm32简易示波器/Listings/Project.map 144.92KB
  65. stm32简易示波器/Listings/startup_stm32f10x_md.lst 40.43KB
  66. stm32简易示波器/Objects/
  67. stm32简易示波器/Objects/ad.crf 339.93KB
  68. stm32简易示波器/Objects/ad.d 1.29KB
  69. stm32简易示波器/Objects/ad.o 375.58KB
  70. stm32简易示波器/Objects/core_cm3.crf 3.85KB
  71. stm32简易示波器/Objects/core_cm3.d 106B
  72. stm32简易示波器/Objects/core_cm3.o 10.75KB
  73. stm32简易示波器/Objects/encoder.crf 338.66KB
  74. stm32简易示波器/Objects/encoder.d 1.4KB
  75. stm32简易示波器/Objects/encoder.o 371.98KB
  76. stm32简易示波器/Objects/ExtDll.iex 19B
  77. stm32简易示波器/Objects/key.crf 338.4KB
  78. stm32简易示波器/Objects/key.d 1.28KB
  79. stm32简易示波器/Objects/key.o 373.94KB
  80. stm32简易示波器/Objects/main.crf 341.62KB
  81. stm32简易示波器/Objects/main.d 1.53KB
  82. stm32简易示波器/Objects/main.o 378.53KB
  83. stm32简易示波器/Objects/misc.crf 338.78KB
  84. stm32简易示波器/Objects/misc.d 1.34KB
  85. stm32简易示波器/Objects/misc.o 373.4KB
  86. stm32简易示波器/Objects/oled.crf 342.87KB
  87. stm32简易示波器/Objects/oled.d 1.35KB
  88. stm32简易示波器/Objects/oled.o 404.56KB
  89. stm32简易示波器/Objects/Project.axf 371.05KB
  90. stm32简易示波器/Objects/Project.build_log.htm 1.55KB
  91. stm32简易示波器/Objects/Project.htm 64.52KB
  92. stm32简易示波器/Objects/Project.lnp 1.18KB
  93. stm32简易示波器/Objects/Project.sct 494B
  94. stm32简易示波器/Objects/Project_Target 1.dep 53.68KB
  95. stm32简易示波器/Objects/startup_stm32f10x_md.d 64B
  96. stm32简易示波器/Objects/startup_stm32f10x_md.o 5.85KB
  97. stm32简易示波器/Objects/stm32f10x_adc.crf 345.79KB
  98. stm32简易示波器/Objects/stm32f10x_adc.d 1.63KB
  99. stm32简易示波器/Objects/stm32f10x_adc.o 418.49KB
  100. stm32简易示波器/Objects/stm32f10x_bkp.crf 339.7KB
  101. stm32简易示波器/Objects/stm32f10x_bkp.d 1.63KB
  102. stm32简易示波器/Objects/stm32f10x_bkp.o 382.83KB
  103. stm32简易示波器/Objects/stm32f10x_can.crf 347.36KB
  104. stm32简易示波器/Objects/stm32f10x_can.d 1.63KB
  105. stm32简易示波器/Objects/stm32f10x_can.o 404.33KB
  106. stm32简易示波器/Objects/stm32f10x_cec.crf 340.24KB
  107. stm32简易示波器/Objects/stm32f10x_cec.d 1.63KB
  108. stm32简易示波器/Objects/stm32f10x_cec.o 385.33KB
  109. stm32简易示波器/Objects/stm32f10x_crc.crf 338.35KB
  110. stm32简易示波器/Objects/stm32f10x_crc.d 1.63KB
  111. stm32简易示波器/Objects/stm32f10x_crc.o 374.37KB
  112. stm32简易示波器/Objects/stm32f10x_dac.crf 340.37KB
  113. stm32简易示波器/Objects/stm32f10x_dac.d 1.63KB
  114. stm32简易示波器/Objects/stm32f10x_dac.o 383.46KB
  115. stm32简易示波器/Objects/stm32f10x_dbgmcu.crf 338.14KB
  116. stm32简易示波器/Objects/stm32f10x_dbgmcu.d 1.73KB
  117. stm32简易示波器/Objects/stm32f10x_dbgmcu.o 370.62KB
  118. stm32简易示波器/Objects/stm32f10x_dma.crf 341.82KB
  119. stm32简易示波器/Objects/stm32f10x_dma.d 1.63KB
  120. stm32简易示波器/Objects/stm32f10x_dma.o 382.96KB
  121. stm32简易示波器/Objects/stm32f10x_exti.crf 339.33KB
  122. stm32简易示波器/Objects/stm32f10x_exti.d 1.66KB
  123. stm32简易示波器/Objects/stm32f10x_exti.o 377.32KB
  124. stm32简易示波器/Objects/stm32f10x_flash.crf 345.63KB
  125. stm32简易示波器/Objects/stm32f10x_flash.d 1.7KB
  126. stm32简易示波器/Objects/stm32f10x_flash.o 407.82KB
  127. stm32简易示波器/Objects/stm32f10x_fsmc.crf 344.17KB
  128. stm32简易示波器/Objects/stm32f10x_fsmc.d 1.66KB
  129. stm32简易示波器/Objects/stm32f10x_fsmc.o 393.92KB
  130. stm32简易示波器/Objects/stm32f10x_gpio.crf 342.2KB
  131. stm32简易示波器/Objects/stm32f10x_gpio.d 1.66KB
  132. stm32简易示波器/Objects/stm32f10x_gpio.o 392.82KB
  133. stm32简易示波器/Objects/stm32f10x_i2c.crf 344.57KB
  134. stm32简易示波器/Objects/stm32f10x_i2c.d 1.63KB
  135. stm32简易示波器/Objects/stm32f10x_i2c.o 412.83KB
  136. stm32简易示波器/Objects/stm32f10x_it.crf 338.27KB
  137. stm32简易示波器/Objects/stm32f10x_it.d 1.59KB
  138. stm32简易示波器/Objects/stm32f10x_it.o 377.94KB
  139. stm32简易示波器/Objects/stm32f10x_iwdg.crf 338.45KB
  140. stm32简易示波器/Objects/stm32f10x_iwdg.d 1.66KB
  141. stm32简易示波器/Objects/stm32f10x_iwdg.o 374.34KB
  142. stm32简易示波器/Objects/stm32f10x_pwr.crf 339.61KB
  143. stm32简易示波器/Objects/stm32f10x_pwr.d 1.63KB
  144. stm32简易示波器/Objects/stm32f10x_pwr.o 378.87KB
  145. stm32简易示波器/Objects/stm32f10x_rcc.crf 345.69KB
  146. stm32简易示波器/Objects/stm32f10x_rcc.d 1.63KB
  147. stm32简易示波器/Objects/stm32f10x_rcc.o 411.61KB
  148. stm32简易示波器/Objects/stm32f10x_rtc.crf 339.61KB
  149. stm32简易示波器/Objects/stm32f10x_rtc.d 1.63KB
  150. stm32简易示波器/Objects/stm32f10x_rtc.o 384.88KB
  151. stm32简易示波器/Objects/stm32f10x_sdio.crf 342.8KB
  152. stm32简易示波器/Objects/stm32f10x_sdio.d 1.66KB
  153. stm32简易示波器/Objects/stm32f10x_sdio.o 406.59KB
  154. stm32简易示波器/Objects/stm32f10x_spi.crf 342.66KB
  155. stm32简易示波器/Objects/stm32f10x_spi.d 1.63KB
  156. stm32简易示波器/Objects/stm32f10x_spi.o 399KB
  157. stm32简易示波器/Objects/stm32f10x_tim.crf 360.35KB
  158. stm32简易示波器/Objects/stm32f10x_tim.d 1.63KB
  159. stm32简易示波器/Objects/stm32f10x_tim.o 493.91KB
  160. stm32简易示波器/Objects/stm32f10x_usart.crf 344.26KB
  161. stm32简易示波器/Objects/stm32f10x_usart.d 1.7KB
  162. stm32简易示波器/Objects/stm32f10x_usart.o 407.87KB
  163. stm32简易示波器/Objects/stm32f10x_wwdg.crf 338.89KB
  164. stm32简易示波器/Objects/stm32f10x_wwdg.d 1.66KB
  165. stm32简易示波器/Objects/stm32f10x_wwdg.o 377.14KB
  166. stm32简易示波器/Objects/system_stm32f10x.crf 339.93KB
  167. stm32简易示波器/Objects/system_stm32f10x.d 1.66KB
  168. stm32简易示波器/Objects/system_stm32f10x.o 372.77KB
  169. stm32简易示波器/Objects/timer.crf 338.6KB
  170. stm32简易示波器/Objects/timer.d 1.34KB
  171. stm32简易示波器/Objects/timer.o 371.18KB
  172. stm32简易示波器/Objects/waveform.crf 341.17KB
  173. stm32简易示波器/Objects/waveform.d 1.5KB
  174. stm32简易示波器/Objects/waveform.o 381.07KB
  175. stm32简易示波器/Project.uvguix.Admin 86.08KB
  176. stm32简易示波器/Project.uvguix.P1091 181.1KB
  177. stm32简易示波器/Project.uvoptx 32.92KB
  178. stm32简易示波器/Project.uvprojx 26.7KB
  179. stm32简易示波器/Start/
  180. stm32简易示波器/Start/core_cm3.c 16.87KB
  181. stm32简易示波器/Start/core_cm3.h 83.71KB
  182. stm32简易示波器/Start/startup_stm32f10x_cl.s 15.4KB
  183. stm32简易示波器/Start/startup_stm32f10x_hd.s 15.14KB
  184. stm32简易示波器/Start/startup_stm32f10x_hd_vl.s 15.32KB
  185. stm32简易示波器/Start/startup_stm32f10x_ld.s 12.09KB
  186. stm32简易示波器/Start/startup_stm32f10x_ld_vl.s 13.34KB
  187. stm32简易示波器/Start/startup_stm32f10x_md.s 12.47KB
  188. stm32简易示波器/Start/startup_stm32f10x_md_vl.s 13.74KB
  189. stm32简易示波器/Start/startup_stm32f10x_xl.s 15.58KB
  190. stm32简易示波器/Start/stm32f10x.h 619.08KB
  191. stm32简易示波器/Start/system_stm32f10x.c 35.7KB
  192. stm32简易示波器/Start/system_stm32f10x.h 2.04KB
  193. stm32简易示波器/System/
  194. stm32简易示波器/System/Timer.c 3.01KB
  195. stm32简易示波器/System/Timer.h 195B
  196. stm32简易示波器/User/
  197. stm32简易示波器/User/main.c 2.52KB
  198. stm32简易示波器/User/stm32f10x_conf.h 3.18KB
  199. stm32简易示波器/User/stm32f10x_it.c 4.3KB
  200. stm32简易示波器/User/stm32f10x_it.h 2.04KB
0评论
提交 加载更多评论
其他资源 2024电赛G题-音频采集部分软件部分-使用FFT分辨人声与音乐
2024电赛G题-音频采集部分软件部分-使用FFT分辨人声与音乐
Access 靶场环境搭建
这里就是我们的 Access 靶场资源文件了,只需要我们把zip文件下载下来,并解压就好 ,内包含各种漏洞练习,适用于教育和测试安全专业人员以及开发者的网络安全技能。
凛冬付费v1更新版.zip
凛冬付费v1更新版.zip
SqlServer-数据库查询工具DBSqlMss
1、支持SqlServer数据库; 2、支持数据库表结构查询及生成建表语法 3、支持SQL数据查询并导出为Excel; 4、支持视图、触发器、存储过程查询,并保存为SQL;
stm32平衡车基于pid控制算法
stm32平衡车基于pid控制算法
BokehPass修改
BokehPass修改
docker和docker-compose离线安装包
注意,本资源适用于操作系统为:CentOS、麒麟V10等 X86 架构的服务器 1)docker版本号:20.10.7 2)docker-compose 版本号:1.25.1 3)本文涵盖内容有:daemon.json、docker.service、docker-20.10.7.tgz、docker-compose-linux-x86_64 4)本资源对应的配套博客内容地址为:https://blog.csdn.net/qq_23845083/article/details/141352156,有需要的可自行移步查看
666666666666666666666666666666666
666666666666666666666666666