diff options
author | tmk <hasu@tmk-kbd.com> | 2015-05-19 00:40:49 +0900 |
---|---|---|
committer | tmk <hasu@tmk-kbd.com> | 2015-05-19 00:40:49 +0900 |
commit | 81137b7a61ef11df023e1f542840a80bfc1ca090 (patch) | |
tree | 92cbbfe97ca83ab5646c8cd48758207cdeceb615 /tmk_core/common/keyboard.h | |
parent | 6014d1014e96a7b484699d4dd8c04292c0233b0e (diff) | |
parent | 80fd3b0b240a8840fbca1cc3cc70e76f5b52b888 (diff) |
Merge branch 'ibm4704_fix_protocol'
Diffstat (limited to 'tmk_core/common/keyboard.h')
-rw-r--r-- | tmk_core/common/keyboard.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tmk_core/common/keyboard.h b/tmk_core/common/keyboard.h index 6442716fc7..7738251b64 100644 --- a/tmk_core/common/keyboard.h +++ b/tmk_core/common/keyboard.h @@ -58,13 +58,15 @@ static inline bool IS_RELEASED(keyevent_t event) { return (!IS_NOEVENT(event) && } +/* it runs once at early stage of startup before keyboard_init. */ +void keyboard_setup(void); +/* it runs once after initializing host side protocol, debug and MCU peripherals. */ void keyboard_init(void); +/* it runs repeatedly in main loop */ void keyboard_task(void); +/* it runs when host LED status is updated */ void keyboard_set_leds(uint8_t leds); -__attribute__ ((weak)) void matrix_power_up(void) {} -__attribute__ ((weak)) void matrix_power_down(void) {} - #ifdef __cplusplus } #endif |