Skip to content

Commit

Permalink
CLEAN ME: More CiZ fix attempts.
Browse files Browse the repository at this point in the history
  • Loading branch information
petejohanson committed Feb 6, 2024
1 parent 3a4d9bc commit 24e3f8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/boards/arm/corneish_zen/Kconfig.defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ config ZMK_DISPLAY_BLANK_ON_IDLE

# Needed for the IL0323 driver which allocs memory to clear the display
config HEAP_MEM_POOL_SIZE
default 10
default 1024

config LV_Z_MEM_POOL_SIZE
default 4096
Expand Down
1 change: 1 addition & 0 deletions app/module/drivers/display/il0323.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ static int il0323_clear_and_write_buffer(const struct device *dev, uint8_t patte

line = k_malloc(IL0323_NUMOF_PAGES);
if (line == NULL) {
LOG_ERR("Failed to allocate memory for the clear");
return -ENOMEM;
}

Expand Down

0 comments on commit 24e3f8c

Please sign in to comment.