summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/drivers/Cst816s.cpp4
-rw-r--r--src/drivers/St7789.cpp16
2 files changed, 10 insertions, 10 deletions
diff --git a/src/drivers/Cst816s.cpp b/src/drivers/Cst816s.cpp
index fd9792b3..affc432f 100644
--- a/src/drivers/Cst816s.cpp
+++ b/src/drivers/Cst816s.cpp
@@ -19,8 +19,8 @@ Cst816S::Cst816S(TwiMaster& twiMaster, uint8_t twiAddress) : twiMaster {twiMaste
void Cst816S::Init() {
nrf_gpio_cfg_output(pinReset);
- nrf_gpio_pin_set(pinReset);
- vTaskDelay(50);
+ //nrf_gpio_pin_set(pinReset);
+ //vTaskDelay(5);
nrf_gpio_pin_clear(pinReset);
vTaskDelay(5);
nrf_gpio_pin_set(pinReset);
diff --git a/src/drivers/St7789.cpp b/src/drivers/St7789.cpp
index 0f1dc02e..74038b2b 100644
--- a/src/drivers/St7789.cpp
+++ b/src/drivers/St7789.cpp
@@ -171,15 +171,15 @@ void St7789::Sleep() {
void St7789::Wakeup() {
nrf_gpio_cfg_output(pinDataCommand);
// TODO why do we need to reset the controller?
- HardwareReset();
- SoftwareReset();
+ //HardwareReset();
+ //SoftwareReset();
SleepOut();
- ColMod();
- MemoryDataAccessControl();
- ColumnAddressSet();
- RowAddressSet();
- DisplayInversionOn();
- NormalModeOn();
+ //ColMod();
+ //MemoryDataAccessControl();
+ //ColumnAddressSet();
+ //RowAddressSet();
+ //DisplayInversionOn();
+ //NormalModeOn();
VerticalScrollStartAddress(verticalScrollingStartAddress);
DisplayOn();
NRF_LOG_INFO("[LCD] Wakeup")