Home
last modified time | relevance | path

Searched refs:ipconfigMAX_IP_TASK_SLEEP_TIME (Results 1 – 3 of 3) sorted by relevance

/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_IP_Timers/
DFreeRTOS_IP_Timers_utest.c103 TEST_ASSERT_EQUAL( ipconfigMAX_IP_TASK_SLEEP_TIME, uxTicks ); in test_xCalculateSleepTime_AllTimersInactive()
115 xARPTimer.ulRemainingTime = ipconfigMAX_IP_TASK_SLEEP_TIME; in test_xCalculateSleepTime_AllTimersActive_AllTimesGreater()
116 xDHCPTimer.ulRemainingTime = ipconfigMAX_IP_TASK_SLEEP_TIME; in test_xCalculateSleepTime_AllTimersActive_AllTimesGreater()
117 xTCPTimer.ulRemainingTime = ipconfigMAX_IP_TASK_SLEEP_TIME; in test_xCalculateSleepTime_AllTimersActive_AllTimesGreater()
118 xDNSTimer.ulRemainingTime = ipconfigMAX_IP_TASK_SLEEP_TIME; in test_xCalculateSleepTime_AllTimersActive_AllTimesGreater()
122 TEST_ASSERT_EQUAL( ipconfigMAX_IP_TASK_SLEEP_TIME, uxTicks ); in test_xCalculateSleepTime_AllTimersActive_AllTimesGreater()
134 xARPTimer.ulRemainingTime = ipconfigMAX_IP_TASK_SLEEP_TIME - 10; in test_xCalculateSleepTime_AllTimersActive_AllTimesGreaterExceptOne()
135 xDHCPTimer.ulRemainingTime = ipconfigMAX_IP_TASK_SLEEP_TIME; in test_xCalculateSleepTime_AllTimersActive_AllTimesGreaterExceptOne()
136 xTCPTimer.ulRemainingTime = ipconfigMAX_IP_TASK_SLEEP_TIME; in test_xCalculateSleepTime_AllTimersActive_AllTimesGreaterExceptOne()
137 xDNSTimer.ulRemainingTime = ipconfigMAX_IP_TASK_SLEEP_TIME; in test_xCalculateSleepTime_AllTimersActive_AllTimesGreaterExceptOne()
[all …]
/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOS_IP.h143 #ifndef ipconfigMAX_IP_TASK_SLEEP_TIME
144 #define ipconfigMAX_IP_TASK_SLEEP_TIME ( pdMS_TO_TICKS( 10000UL ) ) macro
/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_IP_Timers.c104 uxMaximumSleepTime = ipconfigMAX_IP_TASK_SLEEP_TIME; in xCalculateSleepTime()