Home
last modified time | relevance | path

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

/ThreadX-v6.3.0/utility/rtos_compatibility_layers/FreeRTOS/
Dtx_freertos.c2317 StaticTimer_t *pxTimerBuffer) in xTimerCreateStatic() argument
2324 configASSERT(pxTimerBuffer != NULL); in xTimerCreateStatic()
2332 TX_MEMSET(pxTimerBuffer, 0, sizeof(*pxTimerBuffer)); in xTimerCreateStatic()
2333 pxTimerBuffer->allocated = 0u; in xTimerCreateStatic()
2334 pxTimerBuffer->period = xTimerPeriod; in xTimerCreateStatic()
2335 pxTimerBuffer->id = pvTimerID; in xTimerCreateStatic()
2336 pxTimerBuffer->callback = pxCallbackFunction; in xTimerCreateStatic()
2344 …ret = tx_timer_create(&pxTimerBuffer->timer, (char *)pcTimerName, txfr_timer_callback_wrapper, (UL… in xTimerCreateStatic()
2349 return pxTimerBuffer; in xTimerCreateStatic()
DFreeRTOS.h606 StaticTimer_t *pxTimerBuffer);