Commit graph

309 commits

Author SHA1 Message Date
C47D
2f70856205 esp_lcd_backlight: Handle different versions of ESP-IDF 2022-01-14 16:49:53 -06:00
C47D
9b666658ea Revert "FT81x: Replace gpio_pad_select_gpio with esp_rom alias"
This reverts commit 8c7bc42140.
2022-01-14 13:22:02 -06:00
C47D
ff7b3801f7 Revert "esp_backlight: Replace gpio with esp_rom API"
This reverts commit 24e4bf0b88.
2022-01-14 13:15:44 -06:00
C47D
22405d6080 ra8875: Remove usage of gpio_pad_select_gpio 2022-01-13 17:43:28 -06:00
C47D
a273863283 GC9A01: Remove usage of gpio_pad_select_gpio 2022-01-13 17:43:04 -06:00
C47D
e94acd6545 adcraw: Disable usage of gpio_pad_select_gpio 2022-01-13 17:42:43 -06:00
C47D
277ff2be04 FT81x: Fix esp_rom_gpio.h path 2022-01-12 19:15:25 -06:00
C47D
521a166d8a Fix esp_rom_gpio.h path 2022-01-12 18:05:43 -06:00
C47D
8c7bc42140 FT81x: Replace gpio_pad_select_gpio with esp_rom alias 2022-01-12 17:58:01 -06:00
C47D
71451c1cb6 il3820: Remove GPIO initialization from driver init 2022-01-12 17:55:22 -06:00
C47D
24e4bf0b88 esp_backlight: Replace gpio with esp_rom API 2022-01-12 17:52:54 -06:00
C47D
06185a3e2d lvgl_helpers: Use spi_host_device_t from v4.3 onwards 2022-01-11 21:28:26 -06:00
C47D
31247430df lvgl_tft: Remove gpio_pad_select_gpio from drivers init functions 2022-01-11 21:28:26 -06:00
C47D
8cb1b3bdc2 lvgl_helpers: Rearrange includes 2022-01-11 21:28:26 -06:00
C47D
ceaade41a5 lvgl_helpers: Replace spi_common_dma_t values with integers
This enum was introduced in ESP-IDF v4.3 and can't be used in older versions
of ESP-IDF.
2022-01-11 21:27:36 -06:00
C47D
0cec50473a lvgl_interface_init: Initial cleanup 2022-01-11 21:27:16 -06:00
C47D
d327144300 lvgl_helpers: Move FT81X initialization to helper 2022-01-11 21:27:09 -06:00
C47D
150a489b30 lvgl_helpers: Let the SPI driver choose SPI DMA Channel
Use SPI_DMA_CH1 only on ESP32 target.
2022-01-11 21:24:37 -06:00
C47D
75685f6040 lvgl_spi_conf: Define TFT_SPI_HOST even when no SPI is choosen 2022-01-11 21:22:26 -06:00
C47D
9b4eedd00f disp_driver: Pass pointer to lv_disp_drv_t to pcd8544_init 2022-01-11 18:17:09 -06:00
C47D
6418f805bb display_config: Add missing defined 2022-01-11 18:15:22 -06:00
C47D
11f9c2b93f pcd8544: Update driver 2022-01-11 18:14:57 -06:00
C47D
6af2ab1f1c EVE_commands: Remove unused code 2022-01-07 18:30:56 -06:00
C47D
62704efd08 Remove semicolon from preprocessor 2022-01-07 17:38:08 -06:00
C47D
ff055b629e ili9488: Fix typo 2022-01-07 17:27:12 -06:00
Carlos Diaz
17eb416ef8
Update helpers and drivers to handle LVGLv7 and v8 versions (#161)
* [lvgl_helpers] Cleanup and misc code cleanup

Checks for SPI_HOST_MAX symbol before using it.

Rename lvgl_driver_init to lvgl_interface_init because it now only initialize
the interface bus for display drivers, we still need to remove the indev
drivers from here.

Use types defined in spi_types.h for spi host (spi_host_device_t) and
spi dma channels (spi_dma_chan_t).

Also add a couple of symbols to avoid using magic numbers

* [lvgl_helpers] Reduce usage of if defined in lvgl_interface_init

* [lvgl_helpers] Fix spi dma channel for ESP-IDF versions <= 4.2

* [examples] Update hello_world to call lvgl_interface_init

* Add lvgl_get_display_buffer_size helper

This helper will allow us to get the calculated display buffer size instead of using a global symbol.

* Implement lvgl_get_display_buffer_size

This API will be used to get the calculation of display buffer size.

* Delete DISP_BUF_SIZE symbols

The same functionality is handled by lvgl_get_display_buffer_size

* Move SPI max transfer size calculation to helper

Use calculate_spi_max_transfer_size to calculate the SPI max transfer size for the SPI master configuration

* Remove SPI_BUS_MAX_TRANSFER_SZ definition

Same functionality is now handled in calculate_spi_max_transfer_size

* Update display buffer size calculation

Use lvgl_get_display_buffer_size helper instead of DISP_BUF_SIZE symbol

* Update example to LVGL v8

Add comments about changes from:
- LVGL v7 to LVGL v8
- Configuration helpers and display drivers

* Update lvgl_helpers.c

* Update sh1107 driver

* Update EVE driver

Check for symbols used in previous implementations before trying to use them
and add a fallback temporary implementation when not found.

The falback implementation isn't tested with hardware.

Symbols:
- DISP_BUF_SIZE
- SPI_TRANSFER_SIZE

* Update uc8151d driver

* Update jd79653a driver

* Update ra8875 driver

* Update il3820.h

Check for LV_HOR_RES_MAX and LV_VER_RES_MAX before trying to use them

* Update lvgl_helpers.c

Check for ESP-IDF version before trying to use spi_dma_chan_t type
2022-01-07 17:22:11 -06:00
C47D
bb0e3a1f27 Check for LV_USE_LOG when logging orientation 2022-01-07 15:26:39 -06:00
C47D
dcff9a7f11 ili9481: Add missing braces 2022-01-07 15:26:39 -06:00
C47D
f669a09b19 jd79653a: Remove unused code 2022-01-07 15:26:39 -06:00
C47D
d0376e705c uc8151d: Remove unused code 2022-01-07 15:26:39 -06:00
C47D
35d2d3a5af Add LV_DISP_USE_BUSY symbol to enable busy signal 2022-01-07 13:23:28 -06:00
C47D
9ee177b684 ST7789: Display offsets are now runtime configurable
We don't change previous functionality by adding a helper function that sets the user offsets when initializing the display
2022-01-07 13:23:28 -06:00
Carlos Diaz
31399e012a Make SPI3 not available for ESP32C3
The ESP32C3 device doesn't have SPI3
2022-01-06 18:53:34 -06:00
Carlos Diaz
79d8989b2a Update display Kconfig
Remove IDF_TARGET_ESP32S2 checks on TFT SPI Bus choice
2022-01-06 18:53:34 -06:00
C47D
1a8a610b05 Display Kconfig: Fix TTGO default SPI bus and display orientation checks 2022-01-06 18:53:34 -06:00
arktrin
26272b08f0 clarify the 52/53 px offset oddity 2022-01-05 23:47:03 -06:00
arktrin
fbb4ebe409 add offset for 240x135 displays based on ST7789 2022-01-05 23:46:35 -06:00
arktrin
a2a13f1a5f replace hardcoded SPI DMA parameter 2022-01-05 23:46:10 -06:00
arktrin
b9377200a6 fix SPI names for touch
with ESP32-C3 specific auto-dma proper selection
2022-01-05 23:45:54 -06:00
Carlos Diaz
c78e9fe169
Migrate hello_world example to LVGL v8
Update example to LVGL v8.
2021-12-29 23:10:08 -06:00
Tomas Rezucha
d0eca96cd7 fix SPI names 2021-12-16 13:40:00 +01:00
Tomas Rezucha
385421fe06
Merge branch 'master' into develop 2021-12-14 17:46:46 +01:00
Tomas Rezucha
4afc03a9fa
Merge pull request #145 from arktrin/fix-spi-conf
Fix SPI configuration for ESP32C3 and ESP32S2
2021-12-14 16:28:06 +01:00
arktrin
23ee5be93b replace all specific SPI names with SPIx_HOST 2021-12-13 14:31:09 +03:00
arktrin
31a5733c8d Fix SPI configuration for ESP32-C3 and ESP32-S2
ESP32-C3 and ESP32-S2 do not have VSPI or HSPI
2021-12-05 17:01:36 +03:00
Matthias Ringwald
f3f6ba6470 Added PCD8544 to readme, addressed PR comments 2021-11-25 17:16:04 -06:00
Matthias Ringwald
37a4d3a4e6 Add PCD8544 driver 2021-11-25 17:16:04 -06:00
Carlos Diaz
c7607e93d8
ili9488: Start updating to new display port interface (#137)
ILI9488: Start updating to new display port interface
2021-11-17 21:00:07 -06:00
Rashed Talukder
2dad083264 Extern the queue handle and add definition in source file. Add macro condition for dependencies. 2021-10-27 19:12:09 -05:00
Rashed Talukder
ac6cde35c9 Add kconfig symbol for optional coordinates queue 2021-10-27 19:10:31 -05:00