Instrument Cluster RTOS

Why instrument cluster needs an RTOS?
Is freertos suitable for designing instrument cluster?

Hi satyagiet1,

your question looks more general than related to FreeRTOS.
Nowadays using an embedded RTOS became quite trivial, so if not clearly specified it is a good practice to use a RTOS.
As in this guide you can read that:

It (the RTOS) allows applications to be organized as a collection of independent threads of execution.

Even more your code would be essentially scalable and simple to debug (much more with examples in that guide :heart_eyes:).

To better organize your code (functions, tasks, …).

Yes it is.

Hope this helps.

AGA

1 Like

Thanks for your information.