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

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

F4-softTimer.zip

硬件开发 6.8MB 12 需要积分: 1
立即下载

资源介绍:

F4-softTimer.zip
# MultiTimer ## Introduction MultiTimer is a software timer extension module that allows for the expansion of timer tasks as needed, replacing the traditional flag-checking method. It offers a more elegant and convenient way to manage the timing sequences of a program. ## How to Use 1. Configure the system time base interface and install the timer driver: ```c uint64_t PlatformTicksGetFunc(void) { /* Platform-specific implementation */ } multiTimerInstall(PlatformTicksGetFunc); ``` 2. Instantiate a timer object: ```c MultiTimer timer1; ``` 3. Set the timing, timeout callback function, user data pointer, and start the timer: ```c int multiTimerStart(MultiTimer* timer, uint64_t timing, MultiTimerCallback_t callback, void* userData); ``` 4. Call the timer background processing function in the main loop: ```c int main(int argc, char *argv[]) { ... while (1) { ... multiTimerYield(); } } ``` ## Limitations 1. The clock frequency of the timer directly affects its accuracy. It is recommended to use ticks with higher precision such as 1ms, 5ms, or 10ms. 2. The callback function of the timer should not perform time-consuming operations, as this may occupy too much time, causing other timers to not timeout properly. 3. Since the timer's callback function is executed within `multiTimerYield`, care should be taken not to use too much stack space to avoid stack overflow. ## Example The `test_linux.c` file serves as a demo for Linux platforms, showcasing how to use MultiTimer for creating and managing multiple timers with different intervals and behaviors. ```c #include "MultiTimer.h" #include #include #include // Platform-specific function to get current ticks (milliseconds) uint64_t getPlatformTicks() { struct timeval now; gettimeofday(&now, NULL); return now.tv_sec * 1000LL + now.tv_usec / 1000; } // Callback functions for the timers void timerCallback1(MultiTimer* timer, void* userData) { printf("Timer 1 fired at %lu ms\n", getPlatformTicks()); multiTimerStart(timer, 500, timerCallback1, NULL); // Restart timer } void timerCallback2(MultiTimer* timer, void* userData) { printf("Timer 2 fired at %lu ms\n", getPlatformTicks()); multiTimerStart(timer, 1000, timerCallback2, NULL); // Restart timer } void timerCallback3(MultiTimer* timer, void* userData) { printf("Timer 3 (one-shot) fired at %lu ms\n", getPlatformTicks()); } void timerCallback4(MultiTimer* timer, void* userData) { printf("Timer 4 is stopping Timer 1 at %lu ms\n", getPlatformTicks()); multiTimerStop((MultiTimer*)userData); } int main() { multiTimerInstall(getPlatformTicks); MultiTimer timer1, timer2, timer3, timer4; multiTimerStart(&timer1, 500, timerCallback1, NULL); // 500 ms repeating multiTimerStart(&timer2, 1000, timerCallback2, NULL); // 1000 ms repeating multiTimerStart(&timer3, 2000, timerCallback3, NULL); // 2000 ms one-shot multiTimerStart(&timer4, 3000, timerCallback4, &timer1); // 3000 ms, stops timer1 // Main loop to simulate time passage and process timers while (1) { multiTimerYield(); usleep(1000); // Sleep for 1 ms } return 0; } ```

资源文件列表:

F4_softTimer.zip 大约有223个文件
  1. F4_softTimer/.mxproject 8.55KB
  2. F4_softTimer/component/
  3. F4_softTimer/component/softTimer/
  4. F4_softTimer/component/softTimer/MultiTimer.c 1.92KB
  5. F4_softTimer/component/softTimer/MultiTimer.h 2.46KB
  6. F4_softTimer/Core/
  7. F4_softTimer/Core/Inc/
  8. F4_softTimer/Core/Inc/gpio.h 1.28KB
  9. F4_softTimer/Core/Inc/main.h 1.97KB
  10. F4_softTimer/Core/Inc/stm32f4xx_hal_conf.h 19.55KB
  11. F4_softTimer/Core/Inc/stm32f4xx_it.h 1.94KB
  12. F4_softTimer/Core/Inc/tim.h 1.31KB
  13. F4_softTimer/Core/Inc/usart.h 1.36KB
  14. F4_softTimer/Core/Src/
  15. F4_softTimer/Core/Src/gpio.c 1.94KB
  16. F4_softTimer/Core/Src/main.c 6.64KB
  17. F4_softTimer/Core/Src/stm32f4xx_hal_msp.c 2.18KB
  18. F4_softTimer/Core/Src/stm32f4xx_it.c 6.08KB
  19. F4_softTimer/Core/Src/system_stm32f4xx.c 26.94KB
  20. F4_softTimer/Core/Src/tim.c 3.15KB
  21. F4_softTimer/Core/Src/usart.c 3.38KB
  22. F4_softTimer/Drivers/
  23. F4_softTimer/Drivers/CMSIS/
  24. F4_softTimer/Drivers/CMSIS/Device/
  25. F4_softTimer/Drivers/CMSIS/Device/ST/
  26. F4_softTimer/Drivers/CMSIS/Device/ST/STM32F4xx/
  27. F4_softTimer/Drivers/CMSIS/Device/ST/STM32F4xx/Include/
  28. F4_softTimer/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h 1.15MB
  29. F4_softTimer/Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h 11.94KB
  30. F4_softTimer/Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h 2.26KB
  31. F4_softTimer/Drivers/CMSIS/Device/ST/STM32F4xx/LICENSE.txt 377B
  32. F4_softTimer/Drivers/CMSIS/Device/ST/STM32F4xx/Source/
  33. F4_softTimer/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/
  34. F4_softTimer/Drivers/CMSIS/Include/
  35. F4_softTimer/Drivers/CMSIS/Include/cachel1_armv7.h 12.21KB
  36. F4_softTimer/Drivers/CMSIS/Include/cmsis_armcc.h 28.21KB
  37. F4_softTimer/Drivers/CMSIS/Include/cmsis_armclang.h 48.75KB
  38. F4_softTimer/Drivers/CMSIS/Include/cmsis_armclang_ltm.h 56.59KB
  39. F4_softTimer/Drivers/CMSIS/Include/cmsis_compiler.h 9.54KB
  40. F4_softTimer/Drivers/CMSIS/Include/cmsis_gcc.h 64.05KB
  41. F4_softTimer/Drivers/CMSIS/Include/cmsis_iccarm.h 29.37KB
  42. F4_softTimer/Drivers/CMSIS/Include/cmsis_version.h 1.68KB
  43. F4_softTimer/Drivers/CMSIS/Include/core_armv81mml.h 274.29KB
  44. F4_softTimer/Drivers/CMSIS/Include/core_armv8mbl.h 114.48KB
  45. F4_softTimer/Drivers/CMSIS/Include/core_armv8mml.h 182.03KB
  46. F4_softTimer/Drivers/CMSIS/Include/core_cm0.h 41.6KB
  47. F4_softTimer/Drivers/CMSIS/Include/core_cm0plus.h 49.77KB
  48. F4_softTimer/Drivers/CMSIS/Include/core_cm1.h 42.58KB
  49. F4_softTimer/Drivers/CMSIS/Include/core_cm23.h 120.95KB
  50. F4_softTimer/Drivers/CMSIS/Include/core_cm3.h 108.86KB
  51. F4_softTimer/Drivers/CMSIS/Include/core_cm33.h 188.28KB
  52. F4_softTimer/Drivers/CMSIS/Include/core_cm35p.h 188.3KB
  53. F4_softTimer/Drivers/CMSIS/Include/core_cm4.h 120.22KB
  54. F4_softTimer/Drivers/CMSIS/Include/core_cm55.h 314.71KB
  55. F4_softTimer/Drivers/CMSIS/Include/core_cm7.h 138KB
  56. F4_softTimer/Drivers/CMSIS/Include/core_cm85.h 305.66KB
  57. F4_softTimer/Drivers/CMSIS/Include/core_sc000.h 46.48KB
  58. F4_softTimer/Drivers/CMSIS/Include/core_sc300.h 107.85KB
  59. F4_softTimer/Drivers/CMSIS/Include/core_starmc1.h 192.04KB
  60. F4_softTimer/Drivers/CMSIS/Include/mpu_armv7.h 11.72KB
  61. F4_softTimer/Drivers/CMSIS/Include/mpu_armv8.h 11.45KB
  62. F4_softTimer/Drivers/CMSIS/Include/pac_armv81.h 6.12KB
  63. F4_softTimer/Drivers/CMSIS/Include/pmu_armv8.h 22.58KB
  64. F4_softTimer/Drivers/CMSIS/Include/tz_context.h 2.69KB
  65. F4_softTimer/Drivers/CMSIS/LICENSE.txt 11.29KB
  66. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/
  67. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/
  68. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/
  69. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h 234.41KB
  70. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h 12.68KB
  71. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_cortex.h 17KB
  72. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_def.h 7.59KB
  73. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma.h 37.76KB
  74. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_dma_ex.h 2.69KB
  75. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_exti.h 14.84KB
  76. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash.h 14.51KB
  77. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ex.h 63.73KB
  78. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h 2.24KB
  79. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio.h 13.68KB
  80. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_gpio_ex.h 80.79KB
  81. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h 14.54KB
  82. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h 15.84KB
  83. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h 73.15KB
  84. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc_ex.h 434.46KB
  85. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h 122.19KB
  86. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h 16.54KB
  87. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h 45.35KB
  88. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_bus.h 99.52KB
  89. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_cortex.h 24.36KB
  90. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_dma.h 107.33KB
  91. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_exti.h 34.2KB
  92. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_gpio.h 37.53KB
  93. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_pwr.h 31.76KB
  94. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_rcc.h 340.04KB
  95. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_system.h 70.69KB
  96. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_tim.h 174.88KB
  97. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_usart.h 97.79KB
  98. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_ll_utils.h 10.68KB
  99. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/LICENSE.txt 383B
  100. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/
  101. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c 19.34KB
  102. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c 18.85KB
  103. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c 39.87KB
  104. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c 10.34KB
  105. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c 15.11KB
  106. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c 24.21KB
  107. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c 50.05KB
  108. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c 6.05KB
  109. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c 18.92KB
  110. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c 22.05KB
  111. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c 22.83KB
  112. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c 42.45KB
  113. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c 155.73KB
  114. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c 245.9KB
  115. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c 82.04KB
  116. F4_softTimer/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c 136.16KB
  117. F4_softTimer/F4_softTimer.ioc 5.33KB
  118. F4_softTimer/MDK-ARM/
  119. F4_softTimer/MDK-ARM/DebugConfig/
  120. F4_softTimer/MDK-ARM/DebugConfig/F4_softTimer_STM32F407ZGTx.dbgconf 2.78KB
  121. F4_softTimer/MDK-ARM/F4_softTimer.uvguix.geek- 176.01KB
  122. F4_softTimer/MDK-ARM/F4_softTimer.uvoptx 16.42KB
  123. F4_softTimer/MDK-ARM/F4_softTimer.uvprojx 19.82KB
  124. F4_softTimer/MDK-ARM/F4_softTimer/
  125. F4_softTimer/MDK-ARM/F4_softTimer/F4_softTimer.axf 181.1KB
  126. F4_softTimer/MDK-ARM/F4_softTimer/F4_softTimer.build_log.htm 4.07KB
  127. F4_softTimer/MDK-ARM/F4_softTimer/F4_softTimer.hex 23.65KB
  128. F4_softTimer/MDK-ARM/F4_softTimer/F4_softTimer.htm 72.86KB
  129. F4_softTimer/MDK-ARM/F4_softTimer/F4_softTimer.lnp 1.15KB
  130. F4_softTimer/MDK-ARM/F4_softTimer/F4_softTimer.map 274.65KB
  131. F4_softTimer/MDK-ARM/F4_softTimer/F4_softTimer.sct 555B
  132. F4_softTimer/MDK-ARM/F4_softTimer/F4_softTimer_F4_softTimer.dep 73.8KB
  133. F4_softTimer/MDK-ARM/F4_softTimer/gpio.crf 796.2KB
  134. F4_softTimer/MDK-ARM/F4_softTimer/gpio.d 1.85KB
  135. F4_softTimer/MDK-ARM/F4_softTimer/gpio.o 4.25KB
  136. F4_softTimer/MDK-ARM/F4_softTimer/main.crf 798.22KB
  137. F4_softTimer/MDK-ARM/F4_softTimer/main.d 1.95KB
  138. F4_softTimer/MDK-ARM/F4_softTimer/main.o 11.44KB
  139. F4_softTimer/MDK-ARM/F4_softTimer/multitimer.crf 9.21KB
  140. F4_softTimer/MDK-ARM/F4_softTimer/multitimer.d 210B
  141. F4_softTimer/MDK-ARM/F4_softTimer/multitimer.o 6.13KB
  142. F4_softTimer/MDK-ARM/F4_softTimer/softtime.crf 1.63KB
  143. F4_softTimer/MDK-ARM/F4_softTimer/softtime.d 120B
  144. F4_softTimer/MDK-ARM/F4_softTimer/softtime.o 13.54KB
  145. F4_softTimer/MDK-ARM/F4_softTimer/startup_stm32f407xx.d 59B
  146. F4_softTimer/MDK-ARM/F4_softTimer/startup_stm32f407xx.o 7.57KB
  147. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal.crf 793.27KB
  148. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal.d 1.81KB
  149. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal.o 19.07KB
  150. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_cortex.crf 792.65KB
  151. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_cortex.d 1.82KB
  152. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_cortex.o 25.3KB
  153. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_dma.crf 799.31KB
  154. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_dma.d 1.81KB
  155. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_dma.o 18.74KB
  156. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_dma_ex.crf 801.76KB
  157. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_dma_ex.d 1.82KB
  158. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_dma_ex.o 9.56KB
  159. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_exti.crf 794.08KB
  160. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_exti.d 1.82KB
  161. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_exti.o 9.89KB
  162. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_flash.crf 795.85KB
  163. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_flash.d 1.82KB
  164. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_flash.o 13.87KB
  165. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_flash_ex.crf 795.78KB
  166. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_flash_ex.d 1.82KB
  167. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_flash_ex.o 13.87KB
  168. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_flash_ramfunc.crf 790.9KB
  169. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_flash_ramfunc.d 1.83KB
  170. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_flash_ramfunc.o 604B
  171. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_gpio.crf 794.48KB
  172. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_gpio.d 1.82KB
  173. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_gpio.o 10.48KB
  174. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_msp.crf 795.66KB
  175. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_msp.d 1.86KB
  176. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_msp.o 3.07KB
  177. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_pwr.crf 793.55KB
  178. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_pwr.d 1.81KB
  179. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_pwr.o 11.88KB
  180. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_pwr_ex.crf 792.27KB
  181. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_pwr_ex.d 1.82KB
  182. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_pwr_ex.o 6.86KB
  183. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_rcc.crf 802.03KB
  184. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_rcc.d 1.81KB
  185. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_rcc.o 16.54KB
  186. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_rcc_ex.crf 796KB
  187. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_rcc_ex.d 1.82KB
  188. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_rcc_ex.o 9.48KB
  189. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_tim.crf 858.48KB
  190. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_tim.d 1.81KB
  191. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_tim.o 108.86KB
  192. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_tim_ex.crf 818.69KB
  193. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_tim_ex.d 1.82KB
  194. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_tim_ex.o 44.55KB
  195. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_uart.crf 819.23KB
  196. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_uart.d 1.82KB
  197. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_hal_uart.o 57.46KB
  198. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_it.crf 796.14KB
  199. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_it.d 1.88KB
  200. F4_softTimer/MDK-ARM/F4_softTimer/stm32f4xx_it.o 11.31KB
  201. F4_softTimer/MDK-ARM/F4_softTimer/system_stm32f4xx.crf 791.51KB
  202. F4_softTimer/MDK-ARM/F4_softTimer/system_stm32f4xx.d 1.78KB
  203. F4_softTimer/MDK-ARM/F4_softTimer/system_stm32f4xx.o 5.51KB
  204. F4_softTimer/MDK-ARM/F4_softTimer/tim.crf 796.22KB
  205. F4_softTimer/MDK-ARM/F4_softTimer/tim.d 1.85KB
  206. F4_softTimer/MDK-ARM/F4_softTimer/tim.o 12.25KB
  207. F4_softTimer/MDK-ARM/F4_softTimer/usart.crf 796.54KB
  208. F4_softTimer/MDK-ARM/F4_softTimer/usart.d 1.85KB
  209. F4_softTimer/MDK-ARM/F4_softTimer/usart.o 12.12KB
  210. F4_softTimer/MDK-ARM/RTE/
  211. F4_softTimer/MDK-ARM/RTE/_F4_softTimer/
  212. F4_softTimer/MDK-ARM/RTE/_F4_softTimer/RTE_Components.h 348B
  213. F4_softTimer/MDK-ARM/startup_stm32f407xx.lst 70.07KB
  214. F4_softTimer/MDK-ARM/startup_stm32f407xx.s 28.14KB
  215. F4_softTimer/MultiTimer-main/
  216. F4_softTimer/MultiTimer-main/.gitignore 28B
  217. F4_softTimer/MultiTimer-main/examples/
  218. F4_softTimer/MultiTimer-main/examples/test_linux.c 1.58KB
  219. F4_softTimer/MultiTimer-main/LICENSE 1.04KB
  220. F4_softTimer/MultiTimer-main/Makefile 604B
  221. F4_softTimer/MultiTimer-main/MultiTimer.c 1.92KB
  222. F4_softTimer/MultiTimer-main/MultiTimer.h 2.46KB
  223. F4_softTimer/MultiTimer-main/README.md 3.17KB
0评论
提交 加载更多评论
其他资源 基于MEC的任务调度算法
基于MEC的任务调度算法
CH375DLL-x86免费
CH375DLL_x86【免费】 第一步:您从我们网站下载下来文件之后,先将其解压(一般都是zip压缩包)。 第二步:然后根据您系统的情况选择X86/X64,X86为32位电脑,X64为64位电脑。 如果您不知道是X86还是X64,您可以点此链接检测。 第三步:根据软件情况选择文件版本。此步骤比较复杂,     版本号以5.0开头的或含有 nt 一般是windows2000的文件。     版本号以5.1开头的或含有 xp、xpsp1、xpsp2、xpsp3 信息的一般是windowsXP的文件。     版本号以6.0开头的或含有 longhorn、vista 信息的一般是windowsVista的文件。     版本号以6.1开头的或含有 win7 信息的一般是windows7的文件。     版本号以6.2开头的或含有 win8 信息的一般是windows8的文件。     版本号以6.3开头的或含有 win8.1 信息的一般是windows8.1的文件。     版本号以10.0开头的或含有 win10 信息的一般是windows10的文件。     如果不是windows的d
unity 无绿幕实时抠像
使用得是natml得大模型进行抠像。不需要绿幕。编辑器版本2021.3.16f1c1,详细问题加我qq 1030783477
docker-20.10.9.tgz
docker离线安装包
qt exe 需要的 一些 dll 文件
c++ qt, 单独运行 exe, 需要的一些额外的文件, dll 之类的。
coreseek-3.2.14-win32
亲测可用,最低积分
桂电计组课设(A类)2024年
多总线结构
stm32F4077ZEproject温度传感器
stm32F4077ZEproject温度传感器