Lines Matching refs:uxCurrentSeconds
267 time_t uxCurrentSeconds; in prvReadTime() local
279 uxCurrentSeconds = pxPacket->receiveTimestamp.seconds - TIME1970; in prvReadTime()
281 uxCurrentSeconds += uxCurrentMS / 1000; in prvReadTime()
288 FreeRTOS_set_secs_msec( &uxCurrentSeconds, &uxCurrentMS ); 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()
309 int32_t iCurMS = 1000 * ( uxCurrentSeconds - ulLowest ) + uxCurrentMS; in prvReadTime()
314 uxCurrentSeconds -= iTimeZone; in prvReadTime()
316 FreeRTOS_gmtime_r( &uxCurrentSeconds, &xTimeStruct ); in prvReadTime()