Home
last modified time | relevance | path

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

/ThreadX-v6.4.1/utility/rtos_compatibility_layers/FreeRTOS/
Dtx_freertos.c2327 StaticTimer_t *pxTimerBuffer) in xTimerCreateStatic() argument
2334 configASSERT(pxTimerBuffer != NULL); in xTimerCreateStatic()
2342 TX_MEMSET(pxTimerBuffer, 0, sizeof(*pxTimerBuffer)); in xTimerCreateStatic()
2343 pxTimerBuffer->allocated = 0u; in xTimerCreateStatic()
2344 pxTimerBuffer->period = xTimerPeriod; in xTimerCreateStatic()
2345 pxTimerBuffer->id = pvTimerID; in xTimerCreateStatic()
2346 pxTimerBuffer->callback = pxCallbackFunction; in xTimerCreateStatic()
2354 …ret = tx_timer_create(&pxTimerBuffer->timer, (char *)pcTimerName, txfr_timer_callback_wrapper, (UL… in xTimerCreateStatic()
2359 return pxTimerBuffer; in xTimerCreateStatic()
DFreeRTOS.h605 StaticTimer_t *pxTimerBuffer);