2018-08-14 17:54:22 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-10-03 19:04:01 +00:00
|
|
|
#ifdef KEYBOARD_handwired_dactyl_manuform_4x5
|
|
|
|
#include "4x5.h"
|
|
|
|
#elif KEYBOARD_handwired_dactyl_manuform_4x6
|
|
|
|
#include "4x6.h"
|
2018-08-15 22:31:59 +00:00
|
|
|
#elif KEYBOARD_handwired_dactyl_manuform_5x6
|
2018-08-14 17:54:22 +00:00
|
|
|
#include "5x6.h"
|
2020-07-31 20:03:44 +00:00
|
|
|
#elif KEYBOARD_handwired_dactyl_manuform_5x6_5
|
|
|
|
#include "5x6_5.h"
|
2018-08-23 18:48:30 +00:00
|
|
|
#elif KEYBOARD_handwired_dactyl_manuform_5x7
|
|
|
|
#include "5x7.h"
|
2018-10-03 19:04:01 +00:00
|
|
|
#elif KEYBOARD_handwired_dactyl_manuform_6x6
|
|
|
|
#include "6x6.h"
|
2019-06-06 20:15:19 +00:00
|
|
|
#elif KEYBOARD_handwired_dactyl_manuform_dmote_62key
|
|
|
|
#include "62key.h"
|
2018-08-14 17:54:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "quantum.h"
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef USE_I2C
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifdef __AVR__
|
|
|
|
#include <avr/io.h>
|
|
|
|
#include <avr/interrupt.h>
|
|
|
|
#endif
|
|
|
|
#endif
|