You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qmk-fw/drivers/oled
Ted M Lin 9456832a3b
Fix out of bound OLED font access (#8145)
* Fix out of bound OLED font access

The default font is 1344 bytes, or a total of 224 glyphs (each 6-bytes wide).
OLED_FONT_END defaults to 224, which if used will then index off the end of
the font array. So either the documentation or code is wrong.

Instead of figuring out the rewording of the documentation, just change
the OLED_FONT_END default value to 223, to match the documentation and code.

* Add static assert to check array size

Build bomb if the font array size doesn't match to the defines.
5 years ago
..
glcdfont.c clang-format changes 6 years ago
licenses.txt Removed / replaced questionable logos and added licenses file for safe logos 6 years ago
oled_driver.c Fix out of bound OLED font access (#8145) 5 years ago
oled_driver.h Fix out of bound OLED font access (#8145) 5 years ago