c - C11 and (Free)RTOS comparision -
what advantage of using freertos when using gcc c11? e.g in c11 have threading , queues etc, therefore don't need freertos, or not?
threads support optional in c11 standard, , implementation part of c library, not gcc (see here). don't know of c library running on embedded devices implemented c11 threads (at least newlib not), @ moment c11 threads not option, except if plan implement them yourself.
c11 threads not optimised embedded systems, , therefore not specify stack size.
i don't know of queue support in c11, maybe thinking c++11 queues. not using freertos therefore have implement own queues.
Comments
Post a Comment