Skip to content

Commit 62848b3

Browse files
committed
Power optimization - Improve SPI sleep mode
Calls to Spi::Init() are not needed, pin initialization is already done in ctor(). Remove calls to Spi::Sleep()/Spi::Wakeup() to ensure that SPI CS pins are kept high even in sleep mode.
1 parent 4c0f897 commit 62848b3

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

src/drivers/SpiNorFlash.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ SpiNorFlash::SpiNorFlash(Spi& spi) : spi {spi} {
1010
}
1111

1212
void SpiNorFlash::Init() {
13-
spi.Init();
1413
device_id = ReadIdentificaion();
1514
NRF_LOG_INFO("[SpiNorFlash] Manufacturer : %d, Memory type : %d, memory density : %d",
1615
device_id.manufacturer,
@@ -24,12 +23,10 @@ void SpiNorFlash::Uninit() {
2423
void SpiNorFlash::Sleep() {
2524
auto cmd = static_cast<uint8_t>(Commands::DeepPowerDown);
2625
spi.Write(&cmd, sizeof(uint8_t));
27-
spi.Sleep();
2826
NRF_LOG_INFO("[SpiNorFlash] Sleep")
2927
}
3028

3129
void SpiNorFlash::Wakeup() {
32-
spi.Wakeup();
3330
// send Commands::ReleaseFromDeepPowerDown then 3 dummy bytes before reading Device ID
3431
static constexpr uint8_t cmdSize = 4;
3532
uint8_t cmd[cmdSize] = {static_cast<uint8_t>(Commands::ReleaseFromDeepPowerDown), 0x01, 0x02, 0x03};

src/drivers/St7789.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ St7789::St7789(Spi& spi, uint8_t pinDataCommand) : spi {spi}, pinDataCommand {pi
1010
}
1111

1212
void St7789::Init() {
13-
spi.Init();
1413
nrf_gpio_cfg_output(pinDataCommand);
1514
nrf_gpio_cfg_output(26);
1615
nrf_gpio_pin_set(26);
@@ -188,12 +187,10 @@ void St7789::Sleep() {
188187
SleepIn();
189188
nrf_gpio_cfg_default(pinDataCommand);
190189
nrf_gpio_cfg_default(26);
191-
spi.Sleep();
192190
NRF_LOG_INFO("[LCD] Sleep");
193191
}
194192

195193
void St7789::Wakeup() {
196-
spi.Wakeup();
197194
nrf_gpio_cfg_output(pinDataCommand);
198195
SleepOut();
199196
VerticalScrollStartAddress(verticalScrollingStartAddress);

0 commit comments

Comments
 (0)