blob: 11cfd5455aa86efa184a4261a559340e7a19b9b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <stdbool.h>
#include "eeconfig.h"
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);
|