blob: 5aa58a9f0d7672ce14d8b5d7149fc0c883f550fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#include "d4mation.h"
__attribute__ ((weak))
bool process_record_keymap( uint16_t keycode, keyrecord_t *record ) {
/* If you want macros specific to your keymap, you need to define this function in your keymap */
return true;
}
__attribute__ ((weak))
void matrix_init_keymap() {
/* If you want a matrix init specific to your keymap, you need to define this function in your keymap */
}
__attribute__ ((weak))
void matrix_scan_keymap() {
/* If you want a matrix scan specific to your keymap, you need to define this function in your keymap */
}
__attribute__((weak))
void eeconfig_init_keymap( void ) {}
/* process_record_user() is called in macros.c */
void matrix_init_user( void ) {
matrix_init_keymap();
}
void matrix_scan_user( void ) {
matrix_scan_keymap();
}
void eeconfig_init_user( void ) {
eeconfig_init_keymap();
keyboard_init();
}
|