summaryrefslogtreecommitdiffstats
path: root/keyboards/uno/uno.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/uno/uno.h')
-rw-r--r--keyboards/uno/uno.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/keyboards/uno/uno.h b/keyboards/uno/uno.h
index 91d48d2ad5..bb3248e293 100644
--- a/keyboards/uno/uno.h
+++ b/keyboards/uno/uno.h
@@ -13,12 +13,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+
#pragma once
#include "quantum.h"
-#define LAYOUT( \
- K00 \
-) { \
- { K00 } \
-}
+#if defined(KEYBOARD_uno_rev1)
+# include "rev1.h"
+#elif defined(KEYBOARD_uno_rev2)
+# include "rev2.h"
+#endif