mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-14 12:34:39 +00:00
20 lines
263 B
C
20 lines
263 B
C
|
#pragma once
|
||
|
|
||
|
#include "quantum.h"
|
||
|
|
||
|
#ifdef KEYBOARD_jian_handwired
|
||
|
#include "handwired.h"
|
||
|
#endif
|
||
|
|
||
|
#ifdef KEYBOARD_jian_rev1
|
||
|
#include "rev1.h"
|
||
|
#endif
|
||
|
|
||
|
#ifdef KEYBOARD_jian_rev2
|
||
|
#include "rev2.h"
|
||
|
#endif
|
||
|
|
||
|
#ifdef KEYBOARD_jian_nsrev2
|
||
|
#include "nsrev2.h"
|
||
|
#endif
|