]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - tmk_core/common/keyboard.h
Simplify split_common Code significantly (#4772)
[qmk_firmware.git] / tmk_core / common / keyboard.h
index 7738251b646c08fddfe2bab69a97266058c6d631..ea2f336e9dc53186900a994a031d8f05d5256bb0 100644 (file)
@@ -57,6 +57,7 @@ static inline bool IS_RELEASED(keyevent_t event) { return (!IS_NOEVENT(event) &&
     .time = (timer_read() | 1)                          \
 }
 
+void disable_jtag(void);
 
 /* it runs once at early stage of startup before keyboard_init. */
 void keyboard_setup(void);
@@ -66,6 +67,8 @@ void keyboard_init(void);
 void keyboard_task(void);
 /* it runs when host LED status is updated */
 void keyboard_set_leds(uint8_t leds);
+/* it runs whenever code has to behave differently on a slave */
+bool is_keyboard_master(void);
 
 #ifdef __cplusplus
 }