blob: 4f8cfabd88530f3f5828714fe451baf9a0739628 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef ECO_H
#define ECO_H
#ifdef KEYBOARD_eco_rev1
#include "rev1.h"
#endif
#ifdef KEYBOARD_eco_rev2
#include "rev2.h"
#endif
#include "quantum.h"
#endif
|