Hi,
How many thread can i create in S7G2(R7FS7G27G3A01CFP) using e2 studio?
how many core available on this processor(like esp32 have 2 core) ?
Anyone, if you know about this details or related to this ,please share it.
Synergy MCUs are single-core devices. Of course with the software you can create multiple threads but they cannot run concurrently.
NO. Threads operate independently and in parallel - you do not call threads. There are services that all threads use to send messages or synchonize with mutexes and semaphores. You can have unlimited threads…
We hope you read them.
One thread will call another thread so it is loop back again and again right!
Depends on priority ,particular thread will execute first right!
So please tell me, how much time required for completing a one instruction?
NO. Threads operate independently and in parallel - you do not call threads. There are services that all threads use to send messages or synchonize with mutexes and semaphores. You can have unlimited threads in ThreadX until you exhaust RAM.
Suggest you read Azure RTOS manual or the older ThreadX version to understand these concepts. Instruction times vary and are based on clocks. Suggest you download and understand ARM Cortex M Technical Reference for a basic understandinf of the Cortex M family. Cortex M are single core. Cortex R are the dual core version and are commonly used where redundancy is required.
thanks larry_c_mass.
yes, moving step by step.