Options |
RunTime Counter Interrupts
Wrap-around interrupt for the RunTime counter have been added.
INT(name,CNTMILLI,function);
// function called every 1000ms
INT(name,CNTSECS,function);
// function called every 60s
INT(name,CNTMINS,function);
// function called every 60mins
INT(name,CNTHOURS,function);
// function called every 24hours
INT(name,CNTDAYS,function);
// function called every 2^32days
For timer resolutions of less than a second,
use
TIMER0
to
TIMER9.
|