Merge branch 'develop' into fix/use_lvgl_logging

This commit is contained in:
C47D 2021-10-13 22:55:11 -05:00
commit 12cf92da81

View file

@ -153,7 +153,7 @@ void display_bsp_init_io(void)
ESP_ERROR_CHECK(err);
#endif
#ifndef (CONFIG_LV_DISP_BACKLIGHT_OFF) && defined(CONFIG_LV_DISP_PIN_BCKL)
#if !defined(CONFIG_LV_DISP_BACKLIGHT_OFF) && defined(CONFIG_LV_DISP_PIN_BCKL)
io_conf.mode = GPIO_MODE_OUTPUT;
io_conf.pin_bit_mask = (1ULL << CONFIG_LV_DISP_PIN_BCKL);
err = gpio_config(&io_conf);