Hi
I am working with latest sysbios running on Cortex M3 MCU. I don't use Clock handles because I have my own collection of software timers driven by my own 1 ms tick, which is independent from Clock tick. So the best idea for me would be to disable completely Clock handles and code managing this functionality, but I still want to use task timeouts for example with Task_sleep(), Semaphore_pend() and all other sysbios functions using timeout parameter.
Is this possible?
I know that setting of BIOS.clockEnabled = false; disables also kernel timeouts functionality, so it is not an option for me.
Gregor