Skip to content

Commit

Permalink
Apply display driver datasheet delays
Browse files Browse the repository at this point in the history
  • Loading branch information
mark9064 committed Mar 22, 2024
1 parent ff5bdd8 commit 86e7664
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 9 deletions.
47 changes: 38 additions & 9 deletions src/drivers/St7789.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
#include "drivers/St7789.h"
#include <hal/nrf_gpio.h>
#include <nrfx_log.h>
#include "drivers/Spi.h"

using namespace Pinetime::Drivers;

Expand Down Expand Up @@ -43,22 +40,52 @@ void St7789::WriteSpi(const uint8_t* data, size_t size) {
}

void St7789::SoftwareReset() {
EnsureSleepOutPostDelay();
WriteCommand(static_cast<uint8_t>(Commands::SoftwareReset));
vTaskDelay(pdMS_TO_TICKS(150));
// If sleep in: must wait 120ms before sleep out can sent (see driver datasheet)
// Unconditionally wait as software reset doesn't need to be performant
sleepIn = true;
lastSleepExit = xTaskGetTickCount();
vTaskDelay(pdMS_TO_TICKS(125));
}

void St7789::SleepOut() {
if (!sleepIn) {
return;
}
WriteCommand(static_cast<uint8_t>(Commands::SleepOut));
// Wait 5ms for clocks to stabilise
// pdMS rounds down => 6 used here
vTaskDelay(pdMS_TO_TICKS(6));
// Cannot send sleep in or software reset for 120ms
lastSleepExit = xTaskGetTickCount();
sleepIn = false;
}

void St7789::EnsureSleepOutPostDelay() {
TickType_t delta = xTaskGetTickCount() - lastSleepExit;
// Due to timer wraparound, there is a chance of delaying when not necessary
// It is very low (pdMS_TO_TICKS(125)/2^32) and waiting an extra 125ms isn't too bad
if (delta < pdMS_TO_TICKS(125)) {
vTaskDelay(pdMS_TO_TICKS(125) - delta);
}
}

void St7789::SleepIn() {
if (sleepIn) {
return;
}
EnsureSleepOutPostDelay();
WriteCommand(static_cast<uint8_t>(Commands::SleepIn));
// Wait 5ms for clocks to stabilise
// pdMS rounds down => 6 used here
vTaskDelay(pdMS_TO_TICKS(6));
sleepIn = true;
}

void St7789::ColMod() {
WriteCommand(static_cast<uint8_t>(Commands::ColMod));
WriteData(0x55);
vTaskDelay(pdMS_TO_TICKS(10));
}

void St7789::MemoryDataAccessControl() {
Expand Down Expand Up @@ -95,12 +122,10 @@ void St7789::RowAddressSet() {

void St7789::DisplayInversionOn() {
WriteCommand(static_cast<uint8_t>(Commands::DisplayInversionOn));
vTaskDelay(pdMS_TO_TICKS(10));
}

void St7789::NormalModeOn() {
WriteCommand(static_cast<uint8_t>(Commands::NormalModeOn));
vTaskDelay(pdMS_TO_TICKS(10));
}

void St7789::DisplayOn() {
Expand Down Expand Up @@ -136,7 +161,6 @@ void St7789::SetVdv() {

void St7789::DisplayOff() {
WriteCommand(static_cast<uint8_t>(Commands::DisplayOff));
vTaskDelay(pdMS_TO_TICKS(500));
}

void St7789::VerticalScrollStartAddress(uint16_t line) {
Expand All @@ -157,8 +181,13 @@ void St7789::DrawBuffer(uint16_t x, uint16_t y, uint16_t width, uint16_t height,

void St7789::HardwareReset() {
nrf_gpio_pin_clear(pinReset);
vTaskDelay(pdMS_TO_TICKS(10));
vTaskDelay(pdMS_TO_TICKS(1));
nrf_gpio_pin_set(pinReset);
// If hardware reset started while sleep out, reset time may be up to 120ms
// Unconditionally wait as hardware reset doesn't need to be performant
sleepIn = true;
lastSleepExit = xTaskGetTickCount();
vTaskDelay(pdMS_TO_TICKS(125));
}

void St7789::Sleep() {
Expand Down
7 changes: 7 additions & 0 deletions src/drivers/St7789.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
#include <cstddef>
#include <cstdint>

#include <hal/nrf_gpio.h>
#include <nrfx_log.h>
#include "drivers/Spi.h"

namespace Pinetime {
namespace Drivers {
class Spi;
Expand Down Expand Up @@ -29,10 +33,13 @@ namespace Pinetime {
uint8_t pinDataCommand;
uint8_t pinReset;
uint8_t verticalScrollingStartAddress = 0;
bool sleepIn;
TickType_t lastSleepExit;

void HardwareReset();
void SoftwareReset();
void SleepOut();
void EnsureSleepOutPostDelay();
void SleepIn();
void ColMod();
void MemoryDataAccessControl();
Expand Down

0 comments on commit 86e7664

Please sign in to comment.