Skip to content
Snippets Groups Projects
Commit 5f01f4c4 authored by minute's avatar minute
Browse files

Merge branch 'kbd-fw-oled-clear' into 'master'

keyboard-fw: fix wrong command for OLED clearing

See merge request reform/reform!33
parents ecc5e1e3 52551df3
No related branches found
No related tags found
No related merge requests found
...@@ -67,7 +67,7 @@ void hid_report_cmd(uint8_t* data) { ...@@ -67,7 +67,7 @@ void hid_report_cmd(uint8_t* data) {
else if (command == CMD_OLED_BITMAP) { else if (command == CMD_OLED_BITMAP) {
matrix_render_direct(data+4); matrix_render_direct(data+4);
} }
else if (command == CMD_OLED_BITMAP) { else if (command == CMD_OLED_CLEAR) {
gfx_clear(); gfx_clear();
gfx_flush(); gfx_flush();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment