08-31-2009 08:58 AM
I Tryng to set a timed loop source interupt in labview 2009 (evaluation version)....
my arm platform is MCB2300 and i wont to speed up the main loop under 1 ms.
Can anybody help me?
09-01-2009 03:25 AM
09-01-2009 07:25 AM
thank you Daniele;
my question is,, is possible to execute a timing loop faster than 1ms (with timing source eg. interupt timer, other) on mcb 2300 ARM board;
i is possble, wath are the ways?
can you hel me?
Regards
09-02-2009 05:02 AM
I have not a Keil MCB2300 so i don't know but you can try! If you can select another timing source you can go faster than 1kHz
09-02-2009 10:13 AM
As you already figured out interrupts are the only way.
You can see more here, (but somehow obsolite) http://zone.ni.com/devzone/cda/tut/p/id/7063
More about the new feature you could find in the Keil example: <LabVIEW 2009>\examples\lvemb\ARM\MCB2300\Interrupts
Timers can be configured to trigger some processing in less then 1 millisecond, for example 200us:
If you want array or string in the interrupt VI then you have to check "thread". If not, notice that ISR is faster.
However, remember time is an important resource