Skip to content

Commit 2a7c253

Browse files
committed
feat(bus & lcd): support mipi-dsi LCD
1 parent f74f6a7 commit 2a7c253

37 files changed

+685
-39
lines changed

src/lcd/ESP_PanelLcd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include "freertos/FreeRTOS.h"
1818
#include "freertos/semphr.h"
1919
#include "soc/soc_caps.h"
20-
#include "base/esp_lcd_custom_types.h"
20+
#include "base/esp_lcd_vendor_types.h"
2121
#include "bus/ESP_PanelBus.h"
2222

2323
/**

src/lcd/GC9503.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#if SOC_LCD_RGB_SUPPORTED
1212
#include "ESP_PanelLcd.h"
13-
#include "base/esp_lcd_custom_types.h"
13+
#include "base/esp_lcd_vendor_types.h"
1414
#include "base/esp_lcd_gc9503.h"
1515

1616
/**

src/lcd/GC9A01.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#pragma once
88

99
#include "ESP_PanelLcd.h"
10-
#include "base/esp_lcd_custom_types.h"
10+
#include "base/esp_lcd_vendor_types.h"
1111
#include "base/esp_lcd_gc9a01.h"
1212

1313
/**

src/lcd/GC9B71.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#pragma once
88

99
#include "ESP_PanelLcd.h"
10-
#include "base/esp_lcd_custom_types.h"
10+
#include "base/esp_lcd_vendor_types.h"
1111
#include "base/esp_lcd_gc9b71.h"
1212

1313
/**

src/lcd/ILI9341.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#pragma once
88

99
#include "ESP_PanelLcd.h"
10-
#include "base/esp_lcd_custom_types.h"
10+
#include "base/esp_lcd_vendor_types.h"
1111
#include "base/esp_lcd_ili9341.h"
1212

1313
/**

src/lcd/NV3022B.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#pragma once
88

99
#include "ESP_PanelLcd.h"
10-
#include "base/esp_lcd_custom_types.h"
10+
#include "base/esp_lcd_vendor_types.h"
1111
#include "base/esp_lcd_nv3022b.h"
1212

1313
/**

src/lcd/SH8601.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#pragma once
88

99
#include "ESP_PanelLcd.h"
10-
#include "base/esp_lcd_custom_types.h"
10+
#include "base/esp_lcd_vendor_types.h"
1111
#include "base/esp_lcd_sh8601.h"
1212

1313
/**

src/lcd/SPD2010.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#pragma once
88

99
#include "ESP_PanelLcd.h"
10-
#include "base/esp_lcd_custom_types.h"
10+
#include "base/esp_lcd_vendor_types.h"
1111
#include "base/esp_lcd_spd2010.h"
1212

1313
/**

src/lcd/ST7701.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#if SOC_LCD_RGB_SUPPORTED
1111
#include "ESP_PanelLcd.h"
12-
#include "base/esp_lcd_custom_types.h"
12+
#include "base/esp_lcd_vendor_types.h"
1313
#include "base/esp_lcd_st7701.h"
1414

1515
/**

src/lcd/ST7789.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#pragma once
88

99
#include "ESP_PanelLcd.h"
10-
#include "base/esp_lcd_custom_types.h"
10+
#include "base/esp_lcd_vendor_types.h"
1111
#include "base/esp_lcd_st7789.h"
1212

1313
/**

src/lcd/ST77916.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#pragma once
88

99
#include "ESP_PanelLcd.h"
10-
#include "base/esp_lcd_custom_types.h"
10+
#include "base/esp_lcd_vendor_types.h"
1111
#include "base/esp_lcd_st77916.h"
1212

1313
/**

src/lcd/ST77922.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#pragma once
88

99
#include "ESP_PanelLcd.h"
10-
#include "base/esp_lcd_custom_types.h"
10+
#include "base/esp_lcd_vendor_types.h"
1111
#include "base/esp_lcd_st77922.h"
1212

1313
/**

src/lcd/ST7796.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include "ESP_PanelLcd.h"
1010
#include "base/esp_lcd_st7796.h"
11-
#include "base/esp_lcd_custom_types.h"
11+
#include "base/esp_lcd_vendor_types.h"
1212

1313
/**
1414
* @brief ST7796 LCD device object class

0 commit comments

Comments
 (0)