FreeRTOS Daemon On C89 (opens in new tab)
August was very busy for me so it was no publications here… Need to fix it then, let’s make a daemon for the FreeRTOS and understand how it works! :) First things first, let’s understand core concepts of the FreeRTOS: Standard language for FreeRTOS which is used by most developers is C89. In the daemon we need to have a blocking calls to allow other tasks to run. The daemon is based on an infinite loop that will make our task running forever. First we will include all necessary headers for ou...
Read the original article