Learning FreeRTOS: Software Timers

Learning FreeRTOS: Software Timers

Scan to FollowLearn Embedded Together, learn and grow together This is a series of introductory articles on FreeRTOS. While organizing my knowledge, I hope to help beginners quickly get started and master the basic principles and usage of FreeRTOS. Quick Start with FreeRTOS – Exploring the System The official Chinese version of the FreeRTOS website … Read more

FreeRTOS Operating System (8)

FreeRTOS Operating System (8)

Delay Functions Classification of delay functions: Relative delay: vTaskDelay Absolute delay: vTaskDelayUntil Relative delay Absolute delay Relative delay means that each delay starts from the task execution function vTaskDelay() and ends after the specified delay time. Absolute delay means that the task calls the vTaskDelayUntil() function at fixed intervals, in other words, the task executes … Read more