Home
last modified time | relevance | path

Searched refs:uxPreviousSeconds (Results 1 – 2 of 2) sorted by relevance

/FreeRTOS-Plus/Demo/Common/Demo_IP_Protocols/NTP/
A DNTPDemo.c264 time_t uxPreviousSeconds; in prvReadTime() local
285 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()
/FreeRTOS-Plus/Demo/FreeRTOS_Plus_TCP_IPv6_Demo/common/NTP/
A DNTPDemo.c380 time_t uxPreviousSeconds; in prvReadTime() local
401 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