Home
last modified time | relevance | path

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

/device/soc/esp/esp32/components/osal/include/esp_osal/
Dtimers.h492 …TicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_START, ( xTaskGetTickCount() ), NULL, (…
766 …TicksToWait ) xTimerGenericCommand( ( xTimer ), tmrCOMMAND_RESET, ( xTaskGetTickCount() ), NULL, (…
Dmpu_wrappers.h65 #define xTaskGetTickCount MPU_xTaskGetTickCount macro
Dtask.h1397 TickType_t xTaskGetTickCount( void ) PRIVILEGED_FUNCTION;
/device/soc/esp/esp32/components/esp_lwip/port/
Dsys_arch.c446 return xTaskGetTickCount(); in sys_jiffies()
457 return xTaskGetTickCount() * portTICK_PERIOD_MS; in sys_now()
/device/soc/esp/esp32/components/log/
Dlog_freertos.c102 TickType_t tick_count = xPortInIsrContext() ? xTaskGetTickCountFromISR() : xTaskGetTickCount(); in esp_log_timestamp()
/device/soc/esp/esp32/components/osal/
Dliteos_m.c90 TickType_t IRAM_ATTR xTaskGetTickCount(void) in xTaskGetTickCount() function
/device/soc/esp/esp32/components/esp_ringbuf/
Dringbuf.c745 TickType_t xTicksEnd = xTaskGetTickCount() + xTicksToWait; in prvReceiveGeneric()
785 xTicksRemaining = xTicksEnd - xTaskGetTickCount(); in prvReceiveGeneric()
938 TickType_t xTicksEnd = xTaskGetTickCount() + xTicksToWait; in xRingbufferSendAcquire()
962 xTicksRemaining = xTicksEnd - xTaskGetTickCount(); in xRingbufferSendAcquire()
1012 TickType_t xTicksEnd = xTaskGetTickCount() + xTicksToWait; in xRingbufferSend()
1035 xTicksRemaining = xTicksEnd - xTaskGetTickCount(); in xRingbufferSend()
/device/soc/esp/esp32/components/newlib/
Dtime.c162 clock_t t = xTaskGetTickCount() * (portTICK_PERIOD_MS * CLK_TCK / 1000); in _times_r()
/device/soc/esp/esp32/components/driver/
Di2c.c1183 portTickType ticks_start = xTaskGetTickCount(); in i2c_master_cmd_begin()
1218 TickType_t wait_time = xTaskGetTickCount(); in i2c_master_cmd_begin()
1279 portTickType ticks_end = xTaskGetTickCount() + ticks_to_wait; in i2c_slave_write_buffer()
1285 ticks_to_wait = ticks_end - xTaskGetTickCount(); in i2c_slave_write_buffer()
1313 portTickType ticks_end = xTaskGetTickCount() + ticks_to_wait; in i2c_slave_read_buffer()
1326 ticks_rem = ticks_end - xTaskGetTickCount(); in i2c_slave_read_buffer()
Dspi_master.c958 TickType_t start = xTaskGetTickCount(); in spi_device_polling_end()
960 TickType_t end = xTaskGetTickCount(); in spi_device_polling_end()
Duart.c1049 portTickType ticks_start = xTaskGetTickCount(); in uart_wait_tx_done()
1065 TickType_t ticks_end = xTaskGetTickCount(); in uart_wait_tx_done()
/device/soc/esp/esp32/components/esp_event/
Desp_event.c548 TickType_t marker = xTaskGetTickCount(); in esp_event_loop_run()
606 end = xTaskGetTickCount(); in esp_event_loop_run()