~ruther/qmk_firmware

ref: cc4a52eb930cc87919fca6568fdbc4976fc7c839 qmk_firmware/keyboards/boardsource/equals/equals.c -rw-r--r-- 433 bytes
cc4a52eb — フィルターペーパー Remove symbolic linked userspace folder (#22548) 1 year, 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2023 @boardsource
// SPDX-License-Identifier: GPL-2.0-or-later
#include "quantum.h"
__attribute__((weak)) void ui_init(void) {};
__attribute__((weak)) 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();
}
#endif //QUANTUM_PAINTER_ENABLE
Do not follow this link