Searched refs:uxPreviousSeconds (Results 1 – 2 of 2) sorted by relevance
264 time_t uxPreviousSeconds; in prvReadTime() local285 uxPreviousSeconds = FreeRTOS_get_secs_msec( &uxPreviousMS ); in prvReadTime()290 if( uxCurrentSeconds >= uxPreviousSeconds ) in prvReadTime()292 ilDiff = ( int32_t ) ( uxCurrentSeconds - uxPreviousSeconds ); in prvReadTime()296 ilDiff = 0 - ( int32_t ) ( uxPreviousSeconds - uxCurrentSeconds ); in prvReadTime()308 …uint32_t ulLowest = ( uxCurrentSeconds <= uxPreviousSeconds ) ? uxCurrentSeconds : uxPreviousSecon… in prvReadTime()310 int32_t iPrevMS = 1000 * ( uxPreviousSeconds - ulLowest ) + uxPreviousMS; in prvReadTime()
380 time_t uxPreviousSeconds; in prvReadTime() local401 uxPreviousSeconds = FreeRTOS_get_secs_msec( &uxPreviousMS ); in prvReadTime()406 if( uxCurrentSeconds >= uxPreviousSeconds ) in prvReadTime()408 ilDiff = ( int32_t ) ( uxCurrentSeconds - uxPreviousSeconds ); in prvReadTime()412 ilDiff = 0 - ( int32_t ) ( uxPreviousSeconds - uxCurrentSeconds ); in prvReadTime()424 …uint32_t ulLowest = ( uxCurrentSeconds <= uxPreviousSeconds ) ? uxCurrentSeconds : uxPreviousSecon… in prvReadTime()426 int32_t iPrevMS = 1000 * ( uxPreviousSeconds - ulLowest ) + uxPreviousMS; in prvReadTime()
Completed in 7 milliseconds