Hi Sir
Is it necessary to use FreeRTOS for create two tasks ? Does Nordic has any library or API for task creating ?
Hi Sir
Is it necessary to use FreeRTOS for create two tasks ? Does Nordic has any library or API for task creating ?
Is it necessary to use FreeRTOS for create two tasks ?
Not sure what you mean by that?
Many people manage to make projects on these kinds of chips without any RTOS at all!
So, in that sense, FreeRTOS - or any other RTOS - is not necessary.
Perhaps you could clarify your question - what are you actually trying to achieve?
http://www.catb.org/esr/faqs/smart-questions.html#goal
EDIT:
Does Nordic has any library or API for task creating
I mean that I want to create a thread to run something. Should I porting FreeRTOS to my code for this target ?
----------------------------------
main thread --> run cli
other thread --> run a infinite loop for spi device data transmission.
I mean that I want to create a thread to run something. Should I porting FreeRTOS to my code for this target ?
----------------------------------
main thread --> run cli
other thread --> run a infinite loop for spi device data transmission.
You're still jumping the gun!
"create a thread" is a step - not a goal.
Should I porting FreeRTOS to my code for this target
Before talking about any particular RTOS (such as FreeRTOS), you should consider whether you need any RTOS at all.
Thanks your help.