Subject:
|
two task and while true
|
Newsgroups:
|
lugnet.robotics.rcx.nqc
|
Date:
|
Sun, 2 May 1999 06:10:32 GMT
|
Viewed:
|
2347 times
|
| |
| |
Hi
I made a small programm
task main
if IN_3 ==1
start wb
else
stop wb
task sb
while (true)
if () fwd(Out_a,7);
I found out that the prgramms goes into the while loop but it never started
the motor
if I copied it into the main part it runs fine
Is that correct?
Stefan
--
****************************************
Stefan Prescher
prescher@hermes.fho-emden.de
|
|
Message has 1 Reply: | | Re: two task and while true
|
| (...) Hmm: - I believe that, after main starts, unless you press IN_3 *very* quickly, that IN_3 will not be 1, hence stop wb will be chosen. Perhaps you want something like this? : task main { while (true) { wait(IN_3 == 1); // start motor wait(IN_3 (...) (26 years ago, 7-May-99, to lugnet.robotics.rcx.nqc)
|
2 Messages in This Thread:
- Entire Thread on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
|
|
|
|