Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Files

os.h/os_time.c

Prototype

Code Block
void  OSTimeTick (void)

Arguments

None

Returned Value

...

Notes/Warnings

None

Example Usage

Code Block
titleOSTimeTick() example usage
          void MyTickISR (void)
          {
              /* Clear interrupt source */
              OSTimeTick();
              :
              :
          }