split_util.h 283 B

123456789101112131415
  1. #ifndef SPLIT_KEYBOARD_UTIL_H
  2. #define SPLIT_KEYBOARD_UTIL_H
  3. #include <stdbool.h>
  4. #include "eeconfig.h"
  5. extern volatile bool isLeftHand;
  6. // slave version of matix scan, defined in matrix.c
  7. void matrix_slave_scan(void);
  8. void split_keyboard_setup(void);
  9. bool has_usb(void);
  10. #endif