Creating the Task class
FreeRTOS was created using C. C++ offers something more than C, which are object oriented and inheritance. This is shown by the usage of class. By using class, users can create their task by simply creating the object of the class. To implement the class, I need to understand the definition of class and its properties. Class is like data structure, except that it can contain functions. So, each object created from a class will not only has the same Read more







