diff options
author | QMK Bot <hello@qmk.fm> | 2023-07-26 18:43:14 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2023-07-26 18:43:14 +0000 |
commit | deece8c3c61deccf4b13faf193c5a8dc0d775eee (patch) | |
tree | 1227f4ae64568c79ba7a60ab77255cead1569db9 /keyboards/boardsource/equals/equals.c | |
parent | 2775e57d8a94d92c1c242a8f30bea2830a9a88b9 (diff) | |
parent | eb188bd4eefc61f49540cbdd389673de63b2b185 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/boardsource/equals/equals.c')
-rw-r--r-- | keyboards/boardsource/equals/equals.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/keyboards/boardsource/equals/equals.c b/keyboards/boardsource/equals/equals.c new file mode 100644 index 0000000000..f9cc57f123 --- /dev/null +++ b/keyboards/boardsource/equals/equals.c @@ -0,0 +1,19 @@ +// Copyright 2023 @boardsource +// SPDX-License-Identifier: GPL-2.0-or-later +#include "quantum.h" +extern void ui_init(void); +extern void ui_task(void); + +#ifdef QUANTUM_PAINTER_ENABLE +void keyboard_post_init_kb(void) { + // Init the display + ui_init(); + keyboard_post_init_user(); +} + +void housekeeping_task_kb(void) { + // Draw the display + ui_task(); + housekeeping_task_user(); +} +#endif //QUANTUM_PAINTER_ENABLE |