FreeRTOS Lecture 34 – MCU pin configuration table and UART VCP connection
MCU pin configuration table and UART VCP connection Now let’s start implementing the UART initialization that you have to carry out in order to use the UART…
MCU pin configuration table and UART VCP connection Now let’s start implementing the UART initialization that you have to carry out in order to use the UART…
Using MCU peripherals and implementing initialization codes Now let’s learn more about how FreeRTOS schedules the FreeRTOS related tasks, how exactly the task executes, and for how…
Understanding ARM Semi-hosting feature Now, let’s print some data by the task handlers, and let’s use some printf statements in order to print some logs. For that,…
Exercise: Testing via debugger Part-2 In this article, let’s understand the concept of FreeRTOS task schedule. We already created two tasks. Now we have to schedule them…
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…