forked from forks/qmk_firmware
8a330b33ff
* Add final RGBKB Sol firmware * Apply suggestions from code review Apply most of the changes noroadsleft has suggested Co-Authored-By: Legonut <legonut3@gmail.com> * Cleanup readme * Cleanup keymaps per @noroadslefts suggestions * Remove eeproms, use set_single_persistent_default_layer * Suggestions from @noroadsleft and @drashna some small cleanup * Change RGB_SMOD to RGB_RMOD * fix RGB_SMOD * Apply suggestions from code review Remove redundant lines Co-Authored-By: Legonut <legonut3@gmail.com>
18 lines
321 B
C
18 lines
321 B
C
#ifndef SPLIT_KEYBOARD_UTIL_H
|
|
#define SPLIT_KEYBOARD_UTIL_H
|
|
|
|
#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);
|
|
|
|
void matrix_master_OLED_init (void);
|
|
|
|
#endif
|