We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hello,
can anyone tell me if can I use threads and timers (like in C/C++) on LPC2361 and where can I found some demo/examples/manuals about that?
Thanks
// The countdown is running if( --timer_1 == 0 ) { // The countdown has reached zero; ie, the timer has expired // Set flags and/or call functions as appropriate }
"as appropriate" is the key phrase there!
www.8052.com/.../144417
Dear Andrew
you right. The only way is to make sure that the required time is at most or less than the available time. So you must provide in time escape from any running sequence. But will be harder to program :(. That's why they invented multithreading, that you don't worry about that. No offence, I hope
Dorin
Forgive me I forgot to say thanks for help. Thanks man. I appreciate your help.
Can i know how to do multithreading in it?