FreeRTOS Lecture 30 – Exercise: Testing via debugger Part-1
Exercise: Testing via debugger Part-1 Now let’s check whether created tasks are really executing on the microcontroller or not. First, Compile the project (Figure 1). After…
Exercise: Testing via debugger Part-1 Now let’s check whether created tasks are really executing on the microcontroller or not. First, Compile the project (Figure 1). After…
Exercise: Creating FreeRTOS Tasks Part-2 After creating a task using xTaskCreate, you may observe lots of red lines, as shown below. This is because before using any…
Exercise: Creating FreeRTOS Tasks Part-1 Now let’s implement two tasks called task 1 and task 2. You already know the API to create a task, i.e., xTaskCreate().…
Exercise: Understanding MCU clock configuration Part-2 From Figure 1, you can see that the reset handler begins from line 42. This is the first function or subroutine,…
Exercise: Understanding MCU clock configuration Part-1 Before implementing any exercise, let’s ask ourselves what exactly the clock speed of our microcontroller is. Now let’s find out the…
Exercise: Introduction Now let’s do one exercise, and by doing this exercise, you can understand more about the task creation and how things work in the FreeRTOS,…