Skip to content

fix some typo #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ESP32_Display_Panel
version=0.1.0
version=0.1.1
author=espressif
maintainer=espressif
sentence=ESP32_Display_Panel is an Arduino library designed for ESP SoCs to drive display panels and facilitate rapid GUI development.
Expand Down
2 changes: 1 addition & 1 deletion src/ESP_Panel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ ESP_Panel::~ESP_Panel()

end:
ESP_PANEL_ENABLE_TAG_DEBUG_LOG();
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

void ESP_Panel::configExpander(ESP_IOExpander *expander)
Expand Down
2 changes: 1 addition & 1 deletion src/ESP_Panel_Conf_Internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
#include "../../ESP_Panel_Board_Supported.h"
#endif

#ifdef ESP_PANEL_CUSTOM_BOARD_PATH /* If there is a path defined for "ESP_Panel_Board_Supported.h" use it */
#ifdef ESP_PANEL_CUSTOM_BOARD_PATH /* If there is a path defined for "ESP_Panel_Board_Custom.h" use it */
#define __TO_STR_AUX(x) #x
#define __TO_STR(x) __TO_STR_AUX(x)
#include __TO_STR(ESP_PANEL_CUSTOM_BOARD_PATH)
Expand Down
2 changes: 1 addition & 1 deletion src/backlight/ESP_PanelBacklight.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ESP_PanelBacklight::~ESP_PanelBacklight()
ESP_LOGE(TAG, "Delete device failed");
}

ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelBacklight::begin(void)
Expand Down
2 changes: 1 addition & 1 deletion src/bus/I2C.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ESP_PanelBus_I2C::~ESP_PanelBus_I2C()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

void ESP_PanelBus_I2C::configI2cPullupEnable(bool sda_pullup_en, bool scl_pullup_en)
Expand Down
2 changes: 1 addition & 1 deletion src/bus/QSPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ ESP_PanelBus_QSPI::~ESP_PanelBus_QSPI()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

void ESP_PanelBus_QSPI::configQspiMode(uint8_t mode)
Expand Down
2 changes: 1 addition & 1 deletion src/bus/RGB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ ESP_PanelBus_RGB::~ESP_PanelBus_RGB()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

void ESP_PanelBus_RGB::configRgbTimingFreqHz(uint32_t hz)
Expand Down
2 changes: 1 addition & 1 deletion src/bus/SPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ ESP_PanelBus_SPI::~ESP_PanelBus_SPI()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

void ESP_PanelBus_SPI::configSpiMode(uint8_t mode)
Expand Down
2 changes: 1 addition & 1 deletion src/host/ESP_PanelHost.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ESP_PanelHost::~ESP_PanelHost()
{
ESP_PANEL_ENABLE_TAG_DEBUG_LOG();

ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelHost::addHostI2C(const i2c_config_t &host_config, i2c_port_t host_id)
Expand Down
2 changes: 1 addition & 1 deletion src/lcd/GC9503.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ESP_PanelLcd_GC9503::~ESP_PanelLcd_GC9503()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelLcd_GC9503::init(void)
Expand Down
2 changes: 1 addition & 1 deletion src/lcd/GC9A01.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ESP_PanelLcd_GC9A01::~ESP_PanelLcd_GC9A01()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelLcd_GC9A01::init(void)
Expand Down
2 changes: 1 addition & 1 deletion src/lcd/GC9B71.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ESP_PanelLcd_GC9B71::~ESP_PanelLcd_GC9B71()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelLcd_GC9B71::init(void)
Expand Down
2 changes: 1 addition & 1 deletion src/lcd/ILI9341.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ESP_PanelLcd_ILI9341::~ESP_PanelLcd_ILI9341()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelLcd_ILI9341::init(void)
Expand Down
2 changes: 1 addition & 1 deletion src/lcd/NV3022B.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ESP_PanelLcd_NV3022B::~ESP_PanelLcd_NV3022B()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelLcd_NV3022B::init(void)
Expand Down
2 changes: 1 addition & 1 deletion src/lcd/SH8601.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ESP_PanelLcd_SH8601::~ESP_PanelLcd_SH8601()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelLcd_SH8601::init(void)
Expand Down
2 changes: 1 addition & 1 deletion src/lcd/SPD2010.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ESP_PanelLcd_SPD2010::~ESP_PanelLcd_SPD2010()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelLcd_SPD2010::init(void)
Expand Down
2 changes: 1 addition & 1 deletion src/lcd/ST7262.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ESP_PanelLcd_ST7262::~ESP_PanelLcd_ST7262()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelLcd_ST7262::init(void)
Expand Down
2 changes: 1 addition & 1 deletion src/lcd/ST7701.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ESP_PanelLcd_ST7701::~ESP_PanelLcd_ST7701()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelLcd_ST7701::init(void)
Expand Down
2 changes: 1 addition & 1 deletion src/lcd/ST7789.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ESP_PanelLcd_ST7789::~ESP_PanelLcd_ST7789()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelLcd_ST7789::init(void)
Expand Down
2 changes: 1 addition & 1 deletion src/lcd/ST77916.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ESP_PanelLcd_ST77916::~ESP_PanelLcd_ST77916()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelLcd_ST77916::init(void)
Expand Down
2 changes: 1 addition & 1 deletion src/lcd/ST77922.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ESP_PanelLcd_ST77922::~ESP_PanelLcd_ST77922()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelLcd_ST77922::init(void)
Expand Down
2 changes: 1 addition & 1 deletion src/lcd/ST7796.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ESP_PanelLcd_ST7796::~ESP_PanelLcd_ST7796()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelLcd_ST7796::init(void)
Expand Down
2 changes: 1 addition & 1 deletion src/touch/CST816S.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ESP_PanelTouch_CST816S::~ESP_PanelTouch_CST816S()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelTouch_CST816S::begin(void)
Expand Down
2 changes: 1 addition & 1 deletion src/touch/FT5x06.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ESP_PanelTouch_FT5x06::~ESP_PanelTouch_FT5x06()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelTouch_FT5x06::begin(void)
Expand Down
2 changes: 1 addition & 1 deletion src/touch/GT1151.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ESP_PanelTouch_GT1151::~ESP_PanelTouch_GT1151()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelTouch_GT1151::begin(void)
Expand Down
2 changes: 1 addition & 1 deletion src/touch/GT911.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ESP_PanelTouch_GT911::~ESP_PanelTouch_GT911()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelTouch_GT911::begin(void)
Expand Down
2 changes: 1 addition & 1 deletion src/touch/ST7123.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ESP_PanelTouch_ST7123::~ESP_PanelTouch_ST7123()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelTouch_ST7123::begin(void)
Expand Down
2 changes: 1 addition & 1 deletion src/touch/TT21100.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ESP_PanelTouch_TT21100::~ESP_PanelTouch_TT21100()
}

end:
ESP_LOGD(TAG, "Destory");
ESP_LOGD(TAG, "Destroyed");
}

bool ESP_PanelTouch_TT21100::begin(void)
Expand Down
Loading