void speed_CheckTimeout ( UINT32  u32SystemTime )

When no more wheel revolutions occur, the value mg_u32Rpm would stay as it is. To prevent from this behaviour, this function should be called at regular intervals. It will compare the given timestamp with the last timestamp in mg_u32TickTime. If the difference between both values exeeds SPEED_TIMEOUT, the value for mg_u32Rpm will be reset to 0.

Returns:
void

Definition at line 249 of file speed.c.

References mg_u32Rpm, mg_u32TickTime, and SPEED_TIMEOUT.

Referenced by main().

{
  UINT32 u32TickTime;
  cli();
  u32TickTime = mg_u32TickTime;
  sei();
  if(u32SystemTime >= (u32TickTime + SPEED_TIMEOUT))
  {
    cli();
    mg_u32Rpm = 0U;
    sei();
  }
}

Here is the caller graph for this function: