I have a basic questions about FreeRTOS.
On a typical processor (any) would it be possible to design and implement multiple FreeRTOS programs, each having their own int main() { vStartTaskSchedule(); return 0;} and run them simultaneously on the same processor? or is the way to emulate this is using tasks on a single program running on the processor?
Thanks
Tom