Apply reset signal on pin P0.26 for LCD during init.

This commit is contained in:
JF
2020-01-02 14:47:59 +01:00
parent 6abe5d8db8
commit e08cfe07c7
2 changed files with 15 additions and 2 deletions

View File

@@ -16,11 +16,15 @@ namespace Pinetime {
void NextDrawBuffer(const uint8_t* data, size_t size);
void EndDrawBuffer();
void DisplayOn();
void DisplayOff();
private:
SpiMaster& spi;
uint8_t pinDataCommand;
void HardwareReset();
void SoftwareReset();
void SleepOut();
void ColMod();
@@ -28,8 +32,7 @@ namespace Pinetime {
void DisplayInversionOn();
void NormalModeOn();
void WriteToRam();
void DisplayOn();
void DisplayOff();
void SetAddrWindow(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1);