qmk_firmware/keyboards/kbd75/kbd75.h
MechMerlin 1499dffb07 Support KBD75 rev 2 (#3261)
* Restructure kbd75 to support multiple revs

* add rev2 files

* fix config comments

* try and avoid duplicate code for LAYOUT macros

* keep the same layouts for rev2 for info.json

* Add QMK Configurator support for the numpad layout

* update readme to talk about rev2
2018-06-28 22:44:49 -07:00

16 lines
206 B
C

#ifndef KBD75_H
#define KBD75_H
#include "quantum.h"
#ifdef KEYBOARD_kbd75_rev1
#include "rev1.h"
#endif
#ifdef KEYBOARD_kbd75_rev2
#include "../rev1/rev1.h"
#include "rev2.h"
#endif
#endif