Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rzeldent committed Mar 7, 2024
1 parent a852e9d commit dfb17da
Show file tree
Hide file tree
Showing 12 changed files with 832 additions and 982 deletions.
102 changes: 0 additions & 102 deletions include/_esp_lcd_gc9a01.h

This file was deleted.

File renamed without changes.
File renamed without changes.
130 changes: 0 additions & 130 deletions include/_esp_lcd_st7796.h

This file was deleted.

22 changes: 22 additions & 0 deletions include/esp_lcd_panel_ili9341.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#pragma once

#include <esp_lcd.h>
#include <esp_lcd_types.h>
#include <esp_lcd_panel_vendor.h>

#ifdef __cplusplus
extern "C"
{
#endif

typedef struct
{
const lcd_init_cmd_t *init_cmds;
uint16_t init_cmds_size;
} ili9341_vendor_config_t;

esp_err_t esp_lcd_new_panel_ili9341(const esp_lcd_panel_io_handle_t io, const esp_lcd_panel_dev_config_t *config, esp_lcd_panel_handle_t *handle);

#ifdef __cplusplus
}
#endif
22 changes: 22 additions & 0 deletions include/esp_lcd_panel_st7701.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#pragma once

#include <esp_lcd.h>
#include <esp_lcd_types.h>
#include <esp_lcd_panel_vendor.h>

#ifdef __cplusplus
extern "C"
{
#endif

typedef struct
{
const lcd_init_cmd_t *init_cmds;
uint16_t init_cmds_size;
} st7701_vendor_config_t;

esp_err_t esp_lcd_new_panel_st7701(const esp_lcd_panel_io_handle_t io, const esp_lcd_panel_dev_config_t *config, esp_lcd_panel_handle_t *handle);

#ifdef __cplusplus
}
#endif
Loading

0 comments on commit dfb17da

Please sign in to comment.