Home
last modified time | relevance | path

Searched refs:precision (Results 1 – 20 of 20) sorted by relevance

/hal_espressif-3.5.0/components/driver/
Dledc.c265 uint32_t precision = ( 0x1 << duty_resolution ); in ledc_set_timer_div() local
275 div_param = ( (uint64_t) s_ledc_slow_clk_8M << 8 ) / freq_hz / precision; in ledc_set_timer_div()
280 div_param = ( (uint64_t) LEDC_APB_CLK_HZ << 8 ) / freq_hz / precision; in ledc_set_timer_div()
284 div_param = ((uint64_t) LEDC_REF_CLK_HZ << 8) / freq_hz / precision; in ledc_set_timer_div()
293 div_param = ( (uint64_t) src_clk_freq << 8 ) / freq_hz / precision; in ledc_set_timer_div()
541 uint32_t precision = (0x1 << duty_resolution); in ledc_get_freq() local
544 return ((uint64_t) src_clk_freq << 8) / precision / clock_divider; in ledc_get_freq()
/hal_espressif-3.5.0/examples/bluetooth/esp_ble_mesh/common_components/light_driver/
Diot_led.c180 uint32_t precision = (0x1U << duty_resolution); in _iot_set_fade_with_time() local
183 freq = ((uint64_t)LEDC_APB_CLK_HZ << 8) / precision / clock_divider; in _iot_set_fade_with_time()
185 freq = ((uint64_t)LEDC_REF_CLK_HZ << 8) / precision / clock_divider; in _iot_set_fade_with_time()
/hal_espressif-3.5.0/examples/peripherals/uart/nmea0183_parser/main/
DKconfig.projbuild52 - Position/Vertical/Horizontal dilution of precision;
/hal_espressif-3.5.0/docs/en/api-guides/performance/
Dspeed.rst51 - Using :cpp:func:`esp_timer_get_time` generates "wall clock" timestamps with microsecond precision
53 … overhead than the others. It is good for measuring very short execution times with high precision.
83 …oint arithmetic (``float``). Even though {IDF_TARGET_NAME} has a single precision hardware floatin…
85precision floating point arithmetic (``double``). These calculations are emulated in software and …
179 …- :doc:`/api-reference/system/esp_timer` system task to manage high precision timer events and exe…
/hal_espressif-3.5.0/components/esp32c3/
DKconfig168 precision, which may be important for applications which spend a lot of
/hal_espressif-3.5.0/components/esp32h2/
DKconfig163 precision, which may be important for applications which spend a lot of
/hal_espressif-3.5.0/docs/en/api-reference/peripherals/
Dadc.rst173 …- For ADC1, configure desired precision and attenuation by calling functions :cpp:func:`adc1_confi…
188 …ulp>`. To do so, call function :cpp:func:`adc1_ulp_enable` and then set precision and attenuation …
/hal_espressif-3.5.0/docs/en/api-reference/system/
Desp_timer.rst101 …nce function to obtain the time passed since start-up, with microsecond precision: :cpp:func:`esp_…
Dsleep_modes.rst51 …hip after a predefined amount of time. Time is specified at microsecond precision, but the actual …
/hal_espressif-3.5.0/docs/en/hw-reference/esp32/
Dget-started-wrover-kit-v2.rst83 32.768 kHz External precision 32.768 kHz crystal oscillator serves as a clock with low-pow…
Dget-started-wrover-kit-v3.rst84 32.768 kHz External precision 32.768 kHz crystal oscillator serves as a clock with low-pow…
Dget-started-wrover-kit.rst89 …- External precision 32.768 kHz crystal oscillator serves as a clock with low-power consumption wh…
/hal_espressif-3.5.0/components/esp32s2/
DKconfig392 precision, which may be important for applications which spend a lot of
/hal_espressif-3.5.0/components/esp32s3/
DKconfig448 precision, which may be important for applications which spend a lot of
/hal_espressif-3.5.0/docs/en/api-reference/network/
Desp_eth.rst133 …* Some EMAC controller can generate the ``REF_CLK`` using its internal high precision PLL (as seen…
/hal_espressif-3.5.0/components/mbedtls/
DKconfig379 Enable hardware accelerated multiple precision integer operations.
/hal_espressif-3.5.0/docs/en/api-guides/
Dfreertos-smp.rst413 …ESP targets that contain an FPU do not support hardware acceleration for double precision floating…
/hal_espressif-3.5.0/components/esp32/
DKconfig695 precision, which may be important for applications which spend a lot of
/hal_espressif-3.5.0/components/freertos/
DHistory.txt1428 precision floats in place of double precision doubles. This allows the
1429 for testing ports to processors that have only single precision floating
/hal_espressif-3.5.0/tools/catch/
Dcatch.hpp8129 std::string fpToString( T value, int precision ) { in fpToString() argument
8131 oss << std::setprecision( precision ) in fpToString()