Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

Unable to render {include} The included page could not be found.
Unable to render {include} The included page could not be found.

OSTimeTick()

void OSTimeTick (void)

 

File

Called from

Code enabled by

os_time.c

ISR only

N/A

OSTimeTick() “announces” that a tick has just occurred, and that time delays and timeouts need to be updated. This function must be called from the tick ISR.

Arguments

None

Returned Value

None

Notes/Warnings

None

Example

 

void MyTickISR (void)

{

/* Clear interrupt source */

OSTimeTick();

:

:

}

  • No labels