Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi olikraus,
This display has a few interesting traits. It's generally consistent with ST7567 JLX12864, but its physical resolution is padded from 128x32 to 142x36 with weird behaving margins. Since the bits representing the margins are outside display area, there's no way to overwrite them, and they become random garbage data whenever the controller (consequently the DDRAM) is power cycled.
The newly added
static void st7567_lw12832_clear_ddram(u8x8_t *u8x8)
function is to address this issue by setting DDRAM to all zero while ignoringu8x8->x_offset
, thus clearing everything including the margin bits.Code is tested using
U8G2_ST7567_LW12832_F_4W_SW_SPI
and it works fine. Changelog and examples haven't been updated yet.