Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/espcoredump/src/
Dcore_dump_uart.c156 tm_end = esp_cpu_get_ccount() / cpu_ticks_per_ms + CONFIG_ESP_COREDUMP_UART_DELAY; in esp_core_dump_to_uart()
159 tm_cur = esp_cpu_get_ccount() / cpu_ticks_per_ms; in esp_core_dump_to_uart()
/hal_espressif-3.6.0/components/esp_hw_support/include/
Desp_cpu.h61 static inline esp_cpu_ccount_t esp_cpu_get_ccount(void) in esp_cpu_get_ccount() function
/hal_espressif-3.6.0/components/soc/esp32s3/include/soc/
Dcpu.h126 static inline esp_cpu_ccount_t esp_cpu_get_ccount(void) in esp_cpu_get_ccount() function
/hal_espressif-3.6.0/components/driver/test/
Dtest_adc.c304 #define RECORD_TIME_START() do {__t1 = esp_cpu_get_ccount();}while(0)
305 #define RECORD_TIME_END(p_time) do{__t2 = esp_cpu_get_ccount(); *p_time = (__t2-__t1);}whil…
Dtest_spi_master.c1298 #define RECORD_TIME_START() do {__t1 = esp_cpu_get_ccount();}while(0)
1299 #define RECORD_TIME_END(p_time) do{__t2 = esp_cpu_get_ccount(); *p_time = (__t2-__t1);}while(0)
/hal_espressif-3.6.0/examples/peripherals/spi_slave/sender/main/
Dapp_main.c97 uint32_t currtime=esp_cpu_get_ccount(); in gpio_handshake_isr_handler()