forked from mirrors/qmk_firmware
b33e6793de
* feat(keymap): add DactylManuform w/ 2 extra keys and 5 thumb keys * fix(keymap): add missing readme * chore: add gpl2 license header * chore: add gpl2 license header * docs[dactyl_manuform_5x6_2_5]: reformat readme Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
32 lines
807 B
C
32 lines
807 B
C
#pragma once
|
|
|
|
#ifdef KEYBOARD_handwired_dactyl_manuform_4x5
|
|
#include "4x5.h"
|
|
#elif KEYBOARD_handwired_dactyl_manuform_4x6
|
|
#include "4x6.h"
|
|
#elif KEYBOARD_handwired_dactyl_manuform_5x6
|
|
#include "5x6.h"
|
|
#elif KEYBOARD_handwired_dactyl_manuform_5x6_5
|
|
#include "5x6_5.h"
|
|
#elif KEYBOARD_handwired_dactyl_manuform_5x6_2_5
|
|
#include "5x6_2_5.h"
|
|
#elif KEYBOARD_handwired_dactyl_manuform_5x7
|
|
#include "5x7.h"
|
|
#elif KEYBOARD_handwired_dactyl_manuform_6x6
|
|
#include "6x6.h"
|
|
#elif KEYBOARD_handwired_dactyl_manuform_dmote_62key
|
|
#include "62key.h"
|
|
#elif KEYBOARD_handwired_dactyl_manuform_5x6_right_trackball
|
|
# include "5x6_right_trackball.h"
|
|
#endif
|
|
|
|
#include "quantum.h"
|
|
|
|
|
|
#ifdef USE_I2C
|
|
#include <stddef.h>
|
|
#ifdef __AVR__
|
|
#include <avr/io.h>
|
|
#include <avr/interrupt.h>
|
|
#endif
|
|
#endif
|