Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tools:freertos [2023/07/18 12:12] – [Configuration] darrontools:freertos [2023/11/27 04:26] (current) – [Resources] darron
Line 2: Line 2:
  
 ===Install=== ===Install===
 +
 +==current==
  
 <code> <code>
Line 9: Line 11:
 </code> </code>
  
-===Configuration===+===LTS===
  
-Example configuration for FreeRTOS on STM32F302R8+<code> 
 +cd /opt 
 +wget https://github.com/FreeRTOS/FreeRTOS-LTS/releases/download/202210.01-LTS/FreeRTOSv202210.01-LTS.zip 
 +unzip FreeRTOSv202210.01-LTS.zip 
 +</code> 
 + 
 +==git== 
 + 
 +<code> 
 +cd /opt 
 +git clone --recurse-submodules https://github.com/FreeRTOS/FreeRTOS 
 +</code> 
 +===Configuration===
  
-FreeRTOSConfig.h+Configuration for FreeRTOS on STM32F302R8 using timer tick instead 
 +of SysTick for multitasking.
  
 <code> <code>
Line 192: Line 207:
  
 [[https://www.freertos.org/fr-content-src/uploads/2018/07/161204_Mastering_the_FreeRTOS_Real_Time_Kernel-A_Hands-On_Tutorial_Guide.pdf|Documentation]] [[https://www.freertos.org/fr-content-src/uploads/2018/07/161204_Mastering_the_FreeRTOS_Real_Time_Kernel-A_Hands-On_Tutorial_Guide.pdf|Documentation]]
 +
 +[[https://github.com/jefftenney/LPTIM-Tick|STM32 LPTIM Tickless Idle]]