Skip to content

Commit

Permalink
oled ext pwr: Apply ddudek OLED ext pwr patch
Browse files Browse the repository at this point in the history
This commit properly reinitializes the OLED display after ext power is re-enabled.

It requires a patch pn zephyr itself.

Until the patch is implemented in zephyr, it can be applied in your zmk-config’s github build action.

More info here:
zmkfirmware#674

Original code by ddudek can also be found in the above issue.
  • Loading branch information
infused-kim committed Mar 24, 2022
1 parent 35e73d4 commit 6e24fa2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions app/src/ext_power_generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
#include <settings/settings.h>
#include <drivers/gpio.h>
#include <drivers/ext_power.h>
#include <drivers/display.h>

#define ZMK_DISPLAY_NAME CONFIG_LVGL_DISPLAY_DEV_NAME

#if DT_HAS_COMPAT_STATUS_OKAY(DT_DRV_COMPAT)

Expand Down Expand Up @@ -59,6 +62,16 @@ int ext_power_save_state() {
#endif
}

static void drivers_update_power_state(bool power) {
LOG_DBG("drivers_update_power_state: %s", power?"true":"false");
static const struct device *display;
display = device_get_binding(ZMK_DISPLAY_NAME);

if (display != NULL) {
display_update_ext_power(display, power);
}
}

static int ext_power_generic_enable(const struct device *dev) {
struct ext_power_generic_data *data = dev->data;
const struct ext_power_generic_config *config = dev->config;
Expand All @@ -68,6 +81,7 @@ static int ext_power_generic_enable(const struct device *dev) {
return -EIO;
}
data->status = true;
drivers_update_power_state(true);
return ext_power_save_state();
}

Expand All @@ -80,6 +94,8 @@ static int ext_power_generic_disable(const struct device *dev) {
return -EIO;
}
data->status = false;

drivers_update_power_state(false);
return ext_power_save_state();
}

Expand Down

0 comments on commit 6e24fa2

Please sign in to comment.