init

The init method starts the timer ticking. It is used by the framework initialization.

In real-time mode, init creates an OMOSTickTimer, as follows:

osTimer = theOSFactory() ->
createOMOSTickTimer(tick, cbkBridge, this);

In simulated time mode, init creates an OMOSIdleTimer, as follows:

osTimer = theOSFactory() ->
createOMOSIdleTimer (cbkBridge, this);

Visibility
Public
Signature
RP_FRAMEWORK_DLL virtual void init();

Feedback