blob: 36d12ef86b1b6df33359ccca983e3cf96df642fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef HELIX_H
#define HELIX_H
#ifdef KEYBOARD_helix_rev1
#include "rev1.h"
#endif
#ifdef KEYBOARD_helix_rev2
#include "rev2.h"
#endif
#include "quantum.h"
#endif
|