11 years ago.

rtos document please

hi all i need to learn all about the RTOS supported by mbed LPC11U24 any documents available as i am new to this field? can any one help me to understand its meaning: Thread::wait(1000)?? i understand that here wait function is called for 1 s, but what for Thread and "::" are used?

where can i find all these details so that i can write my programs? i need to know all functions and their format to write a program. please help !!

2 Answers

11 years ago.

See: https://mbed.org/handbook/RTOS

Accepted Answer

hi i know this link.is that all mbed RTOS have? more rtos code explanation required !!

i asked about explanation of Thread::wait(1000).can anyone explain me this?

thank you

posted by abhishek srivastava 24 Jun 2013

From there you can also click on the documentation of the code (https://mbed.org/users/mbed_official/code/mbed-rtos/docs/tip/), specifically in 'Thread' the wait function is documented. But it just puts that thread in idle mode for a certain amount of milliseconds.

That you have to call it with Thread:: is because it is defined as a static function (not object but class specific, so even if you have a 100 threads there is only one wait function).

posted by Erik - 24 Jun 2013
10 years, 12 months ago.

:-)