blob: b900d975d2a2e087867feb4b414168fa0024fc99 (
plain)
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
|