FreeRTOS Daemon On C89
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 our daemon:
评论
?
参与讨论