Hi everyone,,

I have been trying to figure out a way to get the agenda processing command
to call a function every 30 sec or 1 minute interval.. I understand that the
present limitation on it is for about 6.5Sec (~65535). Is there a work
around for this problem to get a function to work....


I have something like this as my idea.. just an example of my idea not a
program with strict syntax

main()
{

e_start_agendas_processing();



 e_activate_agenda(function1, 50000) // Every 5 s

}


function1()
{
counter ++;

if (counter == 12)
{
function2();
counter =1;
}
}

would this mess up any important values for the system or something or first
of all is this possible...

Thanking you

Rajesh Medampudi...
_______________________________________________
E-puck-user mailing list
E-puck-user@gna.org
https://mail.gna.org/listinfo/e-puck-user

Reply via email to