Integrating FreeRTOS with C++
FreeRTOS has been using C language as its base programming language ever since it started. So, we decided to try using C++ with FreeRTOS. One of the advantages which C++ provides to FreeRTOS is the usage of class. By using class, users can supposedly create task with less syntax and coding lines. First of all, a class.hpp header file is to be created which will contain the class information of the task creation class. This is to separate the class Read more