~ruther/qmk_firmware

ref: 068571b9febb46edb64663bf6e84ae821a8219a3 qmk_firmware/keyboards/deltasplit75/split_util.h -rw-r--r-- 358 bytes
068571b9 — skullydazed Update our style guide (#5500) 6 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef SPLIT_KEYBOARD_UTIL_H
#define SPLIT_KEYBOARD_UTIL_H

#include <stdbool.h>
#include "eeconfig.h"


#define SLAVE_I2C_ADDRESS           0x32

extern volatile bool isLeftHand;

// slave version of matix scan, defined in matrix.c
void matrix_slave_scan(void);

void split_keyboard_setup(void);
bool has_usb(void);
void keyboard_slave_loop(void);

#endif