Searched refs:LEDC_TIMER_13_BIT (Results 1 – 7 of 7) sorted by relevance
/hal_espressif-3.6.0/components/driver/test/ |
D | test_ledc.c | 66 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/ |
D | ledc_basic_example_main.c | 17 #define LEDC_DUTY_RES LEDC_TIMER_13_BIT // Set duty resolution to 13 bits
|
/hal_espressif-3.6.0/components/hal/include/hal/ |
D | ledc_types.h | 107 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/ |
D | iot_led.c | 30 #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/ |
D | mesh_light.c | 42 .duty_resolution = LEDC_TIMER_13_BIT, in mesh_light_init()
|
/hal_espressif-3.6.0/examples/mesh/manual_networking/main/ |
D | mesh_light.c | 42 .duty_resolution = LEDC_TIMER_13_BIT, in mesh_light_init()
|
/hal_espressif-3.6.0/examples/peripherals/ledc/ledc_fade/main/ |
D | ledc_fade_example_main.c | 89 .duty_resolution = LEDC_TIMER_13_BIT, // resolution of PWM duty in app_main()
|