FreeRTOS Lecture 24 – FreeRTOS behind the scene Task Creation
FreeRTOS behind the scene Task Creation Now let’s understand the FreeRTOS behind the scenes task management. What happens when you create a task? Let’s say you have…
FreeRTOS behind the scene Task Creation Now let’s understand the FreeRTOS behind the scenes task management. What happens when you create a task? Let’s say you have…
Scheduling of Tasks Let’s say you have created two tasks, Task 1 and Task 2 (Figure 1), both assigned equal priorities (Priority 4). When you schedule the…
Task Create API In the previous article, we learn about the task. In this article, let’s understand FreeRTOS APIs to schedule a task. The API xTaskCreate (Figure…
What is the task? Introduction: We do lots of tasks in a day. Our typical tasks for each day could be having breakfast, replying to emails, taking…
Understanding "SystemCoreClock" variable While building the project, we faced the issue "SystemCoreClock" undeclared (Figure 1). That is actually there in the FreeRTOSConfig.h, which you included. Now…
Creating FreeRTOS based project for STM32 MCUs Part-5 As a result of building, we got FreeRTOSConfig.h not found error (Figure 1). The FreeRTOSConfig.h is specific to a…