FreeRTOS Lecture 23 – Scheduling of Tasks
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…
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…
Creating FreeRTOS based project for STM32 MCUs Part-4 Now let’s integrate the 3rd party code into the project in the IDE. Steps: 1. Right-click over your project…