~ruther/qmk_firmware

ref: 75b40dc7a537e7f223a73c165a3f6f0e2e91817c qmk_firmware/keyboards/helix/helix.h -rw-r--r-- 340 bytes
75b40dc7 — Takeshi ISHII Fix mistakes in the include path in `helix/rev2/local_features.mk`. (#16507) 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include "quantum.h"

#ifdef KEYBOARD_helix_rev1
    #include "rev1.h"
#endif
#ifdef KEYBOARD_helix_rev2
    #include "rev2.h"
#endif
#ifdef KEYBOARD_helix_rev3_5rows
    #include "rev3_5rows.h"
#endif
#ifdef KEYBOARD_helix_rev3_4rows
    #include "rev3_4rows.h"
#endif
#ifdef KEYBOARD_helix_pico
    #include "pico.h"
#endif