Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/freertos/test/
Dtest_timers.c44 TimerHandle_t recurring = xTimerCreate("oneshot", 100 / portTICK_PERIOD_MS, pdTRUE, variable
46 TEST_ASSERT(recurring);
47 TEST_ASSERT_EQUAL(pdFALSE, xTimerIsTimerActive(recurring));
50 TEST_ASSERT( xTimerStart(recurring, 1) );
53 TEST_ASSERT_EQUAL(pdTRUE, xTimerIsTimerActive(recurring));
59 TEST_ASSERT_EQUAL(pdTRUE, xTimerIsTimerActive(recurring));
61 TEST_ASSERT( xTimerStop(recurring, 1) );
67 TEST_ASSERT_EQUAL(pdFALSE, xTimerIsTimerActive(recurring));
69 TEST_ASSERT( xTimerDelete(recurring, 1) );