Apply reset signal on pin P0.26 for LCD during init.
This commit is contained in:
@@ -12,6 +12,9 @@ St7789::St7789(SpiMaster &spiMaster, uint8_t pinDataCommand) : spi{spiMaster}, p
|
||||
|
||||
void St7789::Init() {
|
||||
nrf_gpio_cfg_output(pinDataCommand);
|
||||
nrf_gpio_cfg_output(26);
|
||||
nrf_gpio_pin_set(26);
|
||||
HardwareReset();
|
||||
SoftwareReset();
|
||||
SleepOut();
|
||||
ColMod();
|
||||
@@ -158,4 +161,11 @@ void St7789::NextDrawBuffer(const uint8_t *data, size_t size) {
|
||||
spi.Write(data, size);
|
||||
}
|
||||
|
||||
void St7789::HardwareReset() {
|
||||
nrf_gpio_pin_clear(26);
|
||||
nrf_delay_ms(200);
|
||||
nrf_gpio_pin_set(26);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user