/hal_espressif-3.6.0/components/bt/host/bluedroid/external/sbc/decoder/include/ |
D | oi_bt_spec.h | 214 #define OI_BT_TICKS_TO_SECONDS(ticks) ((ticks)/1600) argument 216 #define OI_BT_TICKS_TO_MSECS(ticks) (((ticks)*5)/8) argument
|
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/aligenie_demo/components/vendor_model/ |
D | genie_util.c | 137 TickType_t ticks = 0; in util_semaphore_take() local 140 ticks = portMAX_DELAY; in util_semaphore_take() 142 ticks = pdMS_TO_TICKS(timeout); in util_semaphore_take() 145 return xSemaphoreTake(sem->sem, ticks); in util_semaphore_take()
|
/hal_espressif-3.6.0/components/esp_hw_support/ |
D | esp_clk.c | 109 const uint64_t ticks = rtc_this_ticks - s_rtc_last_ticks; in esp_rtc_get_time_us() local 121 const uint64_t ticks_low = ticks & UINT32_MAX; in esp_rtc_get_time_us() 122 const uint64_t ticks_high = ticks >> 32; in esp_rtc_get_time_us()
|
D | sleep_modes.c | 835 int64_t ticks = rtc_time_us_to_slowclk(sleep_duration, s_config.rtc_clk_cal_period); in timer_wakeup_prepare() local 836 rtc_hal_set_wakeup_timer(s_config.rtc_ticks_at_sleep_start + ticks); in timer_wakeup_prepare()
|
/hal_espressif-3.6.0/components/hal/include/hal/ |
D | rtc_hal.h | 69 #define rtc_hal_set_wakeup_timer(ticks) rtc_cntl_ll_set_wakeup_timer(ticks) argument
|
/hal_espressif-3.6.0/components/esp_system/port/soc/esp32s3/ |
D | usb_console.c | 115 int ticks = MAX(delay_us / (portTICK_PERIOD_MS * 1000), 1); in esp_usb_console_osglue_wait_proc() local 116 vTaskDelay(ticks); in esp_usb_console_osglue_wait_proc() 117 return ticks * portTICK_PERIOD_MS * 1000; in esp_usb_console_osglue_wait_proc()
|
/hal_espressif-3.6.0/components/esp_system/port/soc/esp32s2/ |
D | usb_console.c | 116 int ticks = MAX(delay_us / (portTICK_PERIOD_MS * 1000), 1); in esp_usb_console_osglue_wait_proc() local 117 vTaskDelay(ticks); in esp_usb_console_osglue_wait_proc() 118 return ticks * portTICK_PERIOD_MS * 1000; in esp_usb_console_osglue_wait_proc()
|
/hal_espressif-3.6.0/docs/en/api-guides/ |
D | ulp.rst | 155 …ticks (by default, produced by an internal 150 kHz RC oscillator). The number of ticks is set usin… 161 …Once the timer counts the number of ticks set in the selected ``SENS_ULP_CP_SLEEP_CYCx_REG`` regis… 173 …r counts a number of RTC_SLOW_CLK ticks (by default, produced by an internal 90 kHz RC oscillator)… 179 …Once the timer counts the number of ticks set in the selected ``RTC_CNTL_ULP_CP_TIMER_1_REG`` regi…
|
D | ulp-risc-v.rst | 148 …ticks (by default, produced by an internal {IDF_TARGET_RTC_CLK_FRE} RC oscillator). The number of … 152 Once the timer counts the number of ticks set in the ``RTC_CNTL_ULP_CP_TIMER_1_REG`` register, the …
|
D | ulp-legacy.rst | 153 …ticks (by default, produced by an internal 150 kHz RC oscillator). The number of ticks is set usin… 159 Once the timer counts the number of ticks set in the selected ``SENS_ULP_CP_SLEEP_CYCx_REG`` regist…
|
D | freertos-smp.rst | 256 - However, given enough ticks, a task will eventually be given some processing time. 297 On scheduler resumption, :cpp:func:`xTaskResumeAll` will catch up all of the lost ticks and unblock… 305 When resuming the scheduler on CPU0, :cpp:func:`xTaskResumeAll` will catch up all of the lost ticks…
|
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/btu/ |
D | btu_task.c | 436 p_tle->ticks = timeout_sec; in btu_start_timer() 550 p_tle->ticks = timeout_ticks; in btu_start_quick_timer() 638 p_tle->ticks = timeout_sec; in btu_start_timer_oneshot()
|
/hal_espressif-3.6.0/components/bt/host/bluedroid/common/include/common/ |
D | bt_defs.h | 38 INT32 ticks; member
|
/hal_espressif-3.6.0/components/esp_pm/ |
D | Kconfig | 9 RTOS ticks and timers used for timekeeping. 55 If enabled, some GPIOs will be used to signal events such as RTOS ticks,
|
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/ |
D | rmt.rst | 132 …nerated by the RMT transmitter or discriminated by the receiver is configured in number of 'ticks'. 161 …* A threshold of the filter, set in the number of ticks - **filter_ticks_thresh**. Pulses shorter … 162 …* A pulse length threshold that will turn the RMT receiver idle, set in number of ticks - **idle_t… 181 …of two values. The first value in a pair describes the signal duration in ticks and is 15 bits lon…
|
/hal_espressif-3.6.0/zephyr/esp32/src/wifi/ |
D | esp_wifi_adapter.c | 487 void task_delay(uint32_t ticks) in task_delay() argument 489 k_sleep(K_TICKS(ticks)); in task_delay()
|
/hal_espressif-3.6.0/zephyr/esp32s2/src/wifi/ |
D | esp_wifi_adapter.c | 494 void task_delay(uint32_t ticks) in task_delay() argument 496 k_sleep(K_TICKS(ticks)); in task_delay()
|
/hal_espressif-3.6.0/zephyr/esp32s3/src/wifi/ |
D | esp_wifi_adapter.c | 553 void task_delay(uint32_t ticks) in task_delay() argument 555 k_sleep(K_TICKS(ticks)); in task_delay()
|
/hal_espressif-3.6.0/examples/system/freertos/real_time_stats/ |
D | README.md | 45 Getting real time stats over 100 ticks
|
/hal_espressif-3.6.0/zephyr/esp32c3/src/wifi/ |
D | esp_wifi_adapter.c | 539 void task_delay(uint32_t ticks) in task_delay() argument 541 k_sleep(K_TICKS(ticks)); in task_delay()
|
/hal_espressif-3.6.0/examples/peripherals/lcd/lvgl/ |
D | README.md | 15 …-idf/en/latest/esp32/api-reference/system/esp_timer.html) to generate the ticks needed by LVGL. Fo…
|
/hal_espressif-3.6.0/zephyr/esp_shared/components/esp_hw_support/ |
D | sleep_modes.c | 870 int64_t ticks = rtc_time_us_to_slowclk(sleep_duration, s_config.rtc_clk_cal_period); in timer_wakeup_prepare() local 871 rtc_hal_set_wakeup_timer(s_config.rtc_ticks_at_sleep_start + ticks); in timer_wakeup_prepare()
|
/hal_espressif-3.6.0/components/freertos/ |
D | Kconfig | 403 of ticks. This number can be set using FREERTOS_IDLE_TIME_BEFORE_SLEEP option. 413 int "Minimum number of ticks to enter sleep mode for" 420 of ticks.
|
/hal_espressif-3.6.0/components/bt/host/bluedroid/bta/sys/ |
D | bta_sys_main.c | 617 p_tle->ticks = timeout_ms; in bta_sys_start_timer()
|
/hal_espressif-3.6.0/docs/en/api-reference/system/ |
D | wdts.rst | 41 timeout should always be longer than the period between FreeRTOS ticks (see
|