-
Notifications
You must be signed in to change notification settings - Fork 312
Open
Description
lvgl_esp32_drivers/lvgl_tft/esp_lcd_backlight.c
Lines 59 to 67 in 26fe6e7
| gpio_matrix_out(config->gpio_num, ledc_periph_signal[LEDC_LOW_SPEED_MODE].sig_out0_idx + config->channel_idx, config->output_invert, 0); | |
| } | |
| else | |
| { | |
| // Configure GPIO for output | |
| bckl_dev->index = config->gpio_num; | |
| gpio_pad_select_gpio(config->gpio_num); | |
| ESP_ERROR_CHECK(gpio_set_direction(config->gpio_num, GPIO_MODE_OUTPUT)); | |
| gpio_matrix_out(config->gpio_num, SIG_GPIO_OUT_IDX, config->output_invert, false); |
The called function gpio_matrix_out does not seem to exist anywhere in this library, in LVGL, or in any version of ESP-IDF.
What is the intention of this code, and how does anyone manage to build this package without a definition of this function?
More importantly, can it be fixed please?
Metadata
Metadata
Assignees
Labels
No labels