qmk_firmware/keyboards/lets_split/lets_split.h
TerryMathews ef9e544a7e Let's Split: establish rev2fliphalf subproject
Subproject to accomodate second half pad built in opposite orientation
(places TRRS jacks on opposing edges for shorter cable runs)
2017-01-29 22:22:32 -05:00

16 lines
241 B
C

#ifndef LETS_SPLIT_H
#define LETS_SPLIT_H
#ifdef SUBPROJECT_rev1
#include "rev1.h"
#endif
#ifdef SUBPROJECT_rev2
#include "rev2.h"
#endif
#ifdef SUBPROJECT_rev2fliphalf
#include "rev2fliphalf.h"
#endif
#include "quantum.h"
#endif