split_util.h 320 B

12345678910111213141516
  1. #pragma once
  2. #include <stdbool.h>
  3. #include "eeconfig.h"
  4. #include "quantum.h"
  5. #define SLAVE_I2C_ADDRESS 0x32
  6. extern volatile bool isLeftHand;
  7. extern volatile bool contacted_by_master;
  8. bool has_usb(void);
  9. bool is_rev2(void);
  10. // slave version of matix scan, defined in matrix.c
  11. void matrix_slave_scan(void);