26650731d1
Updated MiniDox split_util.h and eeprom files to reflect this change. I recommend adding this to any split board that used these files, my changes will not effect them currently.
21 lines
395 B
C
21 lines
395 B
C
#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);
|
|
|
|
void matrix_master_OLED_init (void);
|
|
|
|
#endif
|