41c50bb653
* Change keyboard level include guards to `pragma once` And clean up a lot of layout macros * Oops * Remove dangling endif
16 lines
308 B
C
16 lines
308 B
C
#pragma once
|
|
|
|
#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 matrix_master_OLED_init (void);
|