watchdog/src/watchdog.cpp
changeset 28 c461c7fa72c2
parent 21 50bf9db68373
child 40 910a23996aa0
child 54 a3cc46f37772
equal deleted inserted replaced
25:8e4539ab1889 28:c461c7fa72c2
    49 // ---------------------------------------------------------------------------
    49 // ---------------------------------------------------------------------------
    50 // C++ constructor.
    50 // C++ constructor.
    51 // ---------------------------------------------------------------------------
    51 // ---------------------------------------------------------------------------
    52 //
    52 //
    53 CWatchdog::CWatchdog() : 
    53 CWatchdog::CWatchdog() : 
    54     CActive( CActive::EPriorityLow ), iState(EIdle)
    54     CActive( CActive::EPriorityStandard ), iState(EIdle)
    55     {
    55     {
    56     // Add to active scheduler.
    56     // Add to active scheduler.
    57     CActiveScheduler::Add( this );
    57     CActiveScheduler::Add( this );
    58     }
    58     }
    59 
    59