 Question:
I'm looking at TI's code for H.320. I can't find definitions for following stuff -
TimerInit()
TimerAddTicks()
TimerAlloc()
disable()
InterruptInit()
InterruptSetVect()
PpResetAll()
PtReqInit() Answer:
The code you refer to is the Multitasking Executive kernel
functions. You can view the descriptions in the directory structure:
cgt/exec/doc - TimerInit(), TimerAddTicks(), TimerAlloc(),.. found in timer.doc -
disable() found in mp_int.doc - InterruptInit(), InterruptSetVect() found in mp_int.doc -
PpResetAll() resets all PPs (source in mvp_hw.h) - PtReqInit() found in mp_ptreq.doc |