Home
last modified time | relevance | path

Searched refs:LEDC_TIMER_13_BIT (Results 1 – 7 of 7) sorted by relevance

/hal_espressif-3.6.0/components/driver/test/
Dtest_ledc.c66 ledc_time_config.duty_resolution = LEDC_TIMER_13_BIT; in create_default_timer_config()
329 timer_duty_test(LEDC_CHANNEL_0, LEDC_TIMER_13_BIT, timer_list[i], speed_mode_list[j]);
449 timer_frequency_test(LEDC_CHANNEL_0, LEDC_TIMER_13_BIT, LEDC_TIMER_0, LEDC_HIGH_SPEED_MODE);
450 timer_frequency_test(LEDC_CHANNEL_0, LEDC_TIMER_13_BIT, LEDC_TIMER_1, LEDC_HIGH_SPEED_MODE);
451 timer_frequency_test(LEDC_CHANNEL_0, LEDC_TIMER_13_BIT, LEDC_TIMER_2, LEDC_HIGH_SPEED_MODE);
452 timer_frequency_test(LEDC_CHANNEL_0, LEDC_TIMER_13_BIT, LEDC_TIMER_3, LEDC_HIGH_SPEED_MODE);
454 timer_frequency_test(LEDC_CHANNEL_0, LEDC_TIMER_13_BIT, LEDC_TIMER_0, LEDC_LOW_SPEED_MODE);
455 timer_frequency_test(LEDC_CHANNEL_0, LEDC_TIMER_13_BIT, LEDC_TIMER_1, LEDC_LOW_SPEED_MODE);
456 timer_frequency_test(LEDC_CHANNEL_0, LEDC_TIMER_13_BIT, LEDC_TIMER_2, LEDC_LOW_SPEED_MODE);
457 timer_frequency_test(LEDC_CHANNEL_0, LEDC_TIMER_13_BIT, LEDC_TIMER_3, LEDC_LOW_SPEED_MODE);
[all …]
/hal_espressif-3.6.0/examples/peripherals/ledc/ledc_basic/main/
Dledc_basic_example_main.c17 #define LEDC_DUTY_RES LEDC_TIMER_13_BIT // Set duty resolution to 13 bits
/hal_espressif-3.6.0/components/hal/include/hal/
Dledc_types.h107 LEDC_TIMER_13_BIT, /*!< LEDC PWM duty resolution of 13 bits */ enumerator
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/common_components/light_driver/
Diot_led.c30 #define LEDC_VALUE_TO_DUTY(value) (value * ((1 << LEDC_TIMER_13_BIT) - 1) / UINT16_MAX)
31 #define LEDC_DUTY_TO_VALUE(value) (value * UINT16_MAX / ((1 << LEDC_TIMER_13_BIT) - 1) )
387 .duty_resolution = LEDC_TIMER_13_BIT, in iot_led_init()
/hal_espressif-3.6.0/examples/mesh/internal_communication/main/
Dmesh_light.c42 .duty_resolution = LEDC_TIMER_13_BIT, in mesh_light_init()
/hal_espressif-3.6.0/examples/mesh/manual_networking/main/
Dmesh_light.c42 .duty_resolution = LEDC_TIMER_13_BIT, in mesh_light_init()
/hal_espressif-3.6.0/examples/peripherals/ledc/ledc_fade/main/
Dledc_fade_example_main.c89 .duty_resolution = LEDC_TIMER_13_BIT, // resolution of PWM duty in app_main()