summaryrefslogtreecommitdiff
path: root/users/d4mation/d4mation.c
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2023-11-26 18:36:45 +0000
committerGitHub <noreply@github.com>2023-11-27 05:36:45 +1100
commit1ed03f498fa204178c2696c510ac6a2cd8524e2d (patch)
treeb97c1f983b7e4b57c007d0feedadd3ad3e39062b /users/d4mation/d4mation.c
parent4908d4b1ca260efecf3613e6517aa3a6f2034876 (diff)
Remove userspace keymaps (#22544)
Diffstat (limited to 'users/d4mation/d4mation.c')
-rw-r--r--users/d4mation/d4mation.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/users/d4mation/d4mation.c b/users/d4mation/d4mation.c
deleted file mode 100644
index 5d1092cd72..0000000000
--- a/users/d4mation/d4mation.c
+++ /dev/null
@@ -1,37 +0,0 @@
-#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(void) {
- /* 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(void) {
- /* 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();
-
-} \ No newline at end of file