here is a poor-man's version in ChucK:
---
now => time begin;
while( true )
{
now - begin => stdout;
1::second => now;
}
---
output to stdout every 1::second
guaranteed to be synched to audio always without clock skew (not that
it matters)
on-the-fly replace it with an instance of itself to reset
chuck = <id> tick.ck
can throttle it to
output at any interval
http://chuck.cs.princeton.edu/
Best,
Ge!
On Oct 20, 2004, at 11:39 AM, Lee Revell wrote:
On Wed, 2004-10-20 at 10:45, Dave Griffiths wrote:
cheers! :) development by mailing list...
Hey, it works OK for the kernel...
Lee