Skip to content

Commit be924cc

Browse files
committed
fix some typo
Closes #16 Closes #17
1 parent bd59067 commit be924cc

28 files changed

+28
-28
lines changed

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ESP32_Display_Panel
2-
version=0.1.0
2+
version=0.1.1
33
author=espressif
44
maintainer=espressif
55
sentence=ESP32_Display_Panel is an Arduino library designed for ESP SoCs to drive display panels and facilitate rapid GUI development.

src/ESP_Panel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ ESP_Panel::~ESP_Panel()
8181

8282
end:
8383
ESP_PANEL_ENABLE_TAG_DEBUG_LOG();
84-
ESP_LOGD(TAG, "Destory");
84+
ESP_LOGD(TAG, "Destroyed");
8585
}
8686

8787
void ESP_Panel::configExpander(ESP_IOExpander *expander)

src/ESP_Panel_Conf_Internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
#include "../../ESP_Panel_Board_Supported.h"
8080
#endif
8181

82-
#ifdef ESP_PANEL_CUSTOM_BOARD_PATH /* If there is a path defined for "ESP_Panel_Board_Supported.h" use it */
82+
#ifdef ESP_PANEL_CUSTOM_BOARD_PATH /* If there is a path defined for "ESP_Panel_Board_Custom.h" use it */
8383
#define __TO_STR_AUX(x) #x
8484
#define __TO_STR(x) __TO_STR_AUX(x)
8585
#include __TO_STR(ESP_PANEL_CUSTOM_BOARD_PATH)

src/backlight/ESP_PanelBacklight.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ ESP_PanelBacklight::~ESP_PanelBacklight()
3535
ESP_LOGE(TAG, "Delete device failed");
3636
}
3737

38-
ESP_LOGD(TAG, "Destory");
38+
ESP_LOGD(TAG, "Destroyed");
3939
}
4040

4141
bool ESP_PanelBacklight::begin(void)

src/bus/I2C.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ ESP_PanelBus_I2C::~ESP_PanelBus_I2C()
5252
}
5353

5454
end:
55-
ESP_LOGD(TAG, "Destory");
55+
ESP_LOGD(TAG, "Destroyed");
5656
}
5757

5858
void ESP_PanelBus_I2C::configI2cPullupEnable(bool sda_pullup_en, bool scl_pullup_en)

src/bus/QSPI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ESP_PanelBus_QSPI::~ESP_PanelBus_QSPI()
6060
}
6161

6262
end:
63-
ESP_LOGD(TAG, "Destory");
63+
ESP_LOGD(TAG, "Destroyed");
6464
}
6565

6666
void ESP_PanelBus_QSPI::configQspiMode(uint8_t mode)

src/bus/RGB.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ ESP_PanelBus_RGB::~ESP_PanelBus_RGB()
100100
}
101101

102102
end:
103-
ESP_LOGD(TAG, "Destory");
103+
ESP_LOGD(TAG, "Destroyed");
104104
}
105105

106106
void ESP_PanelBus_RGB::configRgbTimingFreqHz(uint32_t hz)

src/bus/SPI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ ESP_PanelBus_SPI::~ESP_PanelBus_SPI()
5959
}
6060

6161
end:
62-
ESP_LOGD(TAG, "Destory");
62+
ESP_LOGD(TAG, "Destroyed");
6363
}
6464

6565
void ESP_PanelBus_SPI::configSpiMode(uint8_t mode)

src/host/ESP_PanelHost.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ESP_PanelHost::~ESP_PanelHost()
2020
{
2121
ESP_PANEL_ENABLE_TAG_DEBUG_LOG();
2222

23-
ESP_LOGD(TAG, "Destory");
23+
ESP_LOGD(TAG, "Destroyed");
2424
}
2525

2626
bool ESP_PanelHost::addHostI2C(const i2c_config_t &host_config, i2c_port_t host_id)

src/lcd/GC9503.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ ESP_PanelLcd_GC9503::~ESP_PanelLcd_GC9503()
3535
}
3636

3737
end:
38-
ESP_LOGD(TAG, "Destory");
38+
ESP_LOGD(TAG, "Destroyed");
3939
}
4040

4141
bool ESP_PanelLcd_GC9503::init(void)

src/lcd/GC9A01.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ESP_PanelLcd_GC9A01::~ESP_PanelLcd_GC9A01()
3232
}
3333

3434
end:
35-
ESP_LOGD(TAG, "Destory");
35+
ESP_LOGD(TAG, "Destroyed");
3636
}
3737

3838
bool ESP_PanelLcd_GC9A01::init(void)

src/lcd/GC9B71.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ ESP_PanelLcd_GC9B71::~ESP_PanelLcd_GC9B71()
3636
}
3737

3838
end:
39-
ESP_LOGD(TAG, "Destory");
39+
ESP_LOGD(TAG, "Destroyed");
4040
}
4141

4242
bool ESP_PanelLcd_GC9B71::init(void)

src/lcd/ILI9341.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ESP_PanelLcd_ILI9341::~ESP_PanelLcd_ILI9341()
3232
}
3333

3434
end:
35-
ESP_LOGD(TAG, "Destory");
35+
ESP_LOGD(TAG, "Destroyed");
3636
}
3737

3838
bool ESP_PanelLcd_ILI9341::init(void)

src/lcd/NV3022B.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ESP_PanelLcd_NV3022B::~ESP_PanelLcd_NV3022B()
3232
}
3333

3434
end:
35-
ESP_LOGD(TAG, "Destory");
35+
ESP_LOGD(TAG, "Destroyed");
3636
}
3737

3838
bool ESP_PanelLcd_NV3022B::init(void)

src/lcd/SH8601.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ ESP_PanelLcd_SH8601::~ESP_PanelLcd_SH8601()
3636
}
3737

3838
end:
39-
ESP_LOGD(TAG, "Destory");
39+
ESP_LOGD(TAG, "Destroyed");
4040
}
4141

4242
bool ESP_PanelLcd_SH8601::init(void)

src/lcd/SPD2010.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ESP_PanelLcd_SPD2010::~ESP_PanelLcd_SPD2010()
3434
}
3535

3636
end:
37-
ESP_LOGD(TAG, "Destory");
37+
ESP_LOGD(TAG, "Destroyed");
3838
}
3939

4040
bool ESP_PanelLcd_SPD2010::init(void)

src/lcd/ST7262.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ ESP_PanelLcd_ST7262::~ESP_PanelLcd_ST7262()
4545
}
4646

4747
end:
48-
ESP_LOGD(TAG, "Destory");
48+
ESP_LOGD(TAG, "Destroyed");
4949
}
5050

5151
bool ESP_PanelLcd_ST7262::init(void)

src/lcd/ST7701.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ ESP_PanelLcd_ST7701::~ESP_PanelLcd_ST7701()
3535
}
3636

3737
end:
38-
ESP_LOGD(TAG, "Destory");
38+
ESP_LOGD(TAG, "Destroyed");
3939
}
4040

4141
bool ESP_PanelLcd_ST7701::init(void)

src/lcd/ST7789.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ESP_PanelLcd_ST7789::~ESP_PanelLcd_ST7789()
3232
}
3333

3434
end:
35-
ESP_LOGD(TAG, "Destory");
35+
ESP_LOGD(TAG, "Destroyed");
3636
}
3737

3838
bool ESP_PanelLcd_ST7789::init(void)

src/lcd/ST77916.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ESP_PanelLcd_ST77916::~ESP_PanelLcd_ST77916()
3232
}
3333

3434
end:
35-
ESP_LOGD(TAG, "Destory");
35+
ESP_LOGD(TAG, "Destroyed");
3636
}
3737

3838
bool ESP_PanelLcd_ST77916::init(void)

src/lcd/ST77922.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ESP_PanelLcd_ST77922::~ESP_PanelLcd_ST77922()
3434
}
3535

3636
end:
37-
ESP_LOGD(TAG, "Destory");
37+
ESP_LOGD(TAG, "Destroyed");
3838
}
3939

4040
bool ESP_PanelLcd_ST77922::init(void)

src/lcd/ST7796.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ESP_PanelLcd_ST7796::~ESP_PanelLcd_ST7796()
3232
}
3333

3434
end:
35-
ESP_LOGD(TAG, "Destory");
35+
ESP_LOGD(TAG, "Destroyed");
3636
}
3737

3838
bool ESP_PanelLcd_ST7796::init(void)

src/touch/CST816S.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ESP_PanelTouch_CST816S::~ESP_PanelTouch_CST816S()
3333
}
3434

3535
end:
36-
ESP_LOGD(TAG, "Destory");
36+
ESP_LOGD(TAG, "Destroyed");
3737
}
3838

3939
bool ESP_PanelTouch_CST816S::begin(void)

src/touch/FT5x06.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ESP_PanelTouch_FT5x06::~ESP_PanelTouch_FT5x06()
3333
}
3434

3535
end:
36-
ESP_LOGD(TAG, "Destory");
36+
ESP_LOGD(TAG, "Destroyed");
3737
}
3838

3939
bool ESP_PanelTouch_FT5x06::begin(void)

src/touch/GT1151.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ESP_PanelTouch_GT1151::~ESP_PanelTouch_GT1151()
3333
}
3434

3535
end:
36-
ESP_LOGD(TAG, "Destory");
36+
ESP_LOGD(TAG, "Destroyed");
3737
}
3838

3939
bool ESP_PanelTouch_GT1151::begin(void)

src/touch/GT911.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ESP_PanelTouch_GT911::~ESP_PanelTouch_GT911()
3333
}
3434

3535
end:
36-
ESP_LOGD(TAG, "Destory");
36+
ESP_LOGD(TAG, "Destroyed");
3737
}
3838

3939
bool ESP_PanelTouch_GT911::begin(void)

src/touch/ST7123.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ESP_PanelTouch_ST7123::~ESP_PanelTouch_ST7123()
3333
}
3434

3535
end:
36-
ESP_LOGD(TAG, "Destory");
36+
ESP_LOGD(TAG, "Destroyed");
3737
}
3838

3939
bool ESP_PanelTouch_ST7123::begin(void)

src/touch/TT21100.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ESP_PanelTouch_TT21100::~ESP_PanelTouch_TT21100()
3333
}
3434

3535
end:
36-
ESP_LOGD(TAG, "Destory");
36+
ESP_LOGD(TAG, "Destroyed");
3737
}
3838

3939
bool ESP_PanelTouch_TT21100::begin(void)

0 commit comments

Comments
 (0)