Merge commit 'a074364c3731d66b56d988c8a6c960a83ea0e0a1' as 'tmk_core'
This commit is contained in:
21
tmk_core/common/sleep_led.h
Normal file
21
tmk_core/common/sleep_led.h
Normal file
@ -0,0 +1,21 @@
|
||||
#ifndef SLEEP_LED_H
|
||||
#define SLEEP_LED_H
|
||||
|
||||
|
||||
#ifdef SLEEP_LED_ENABLE
|
||||
|
||||
void sleep_led_init(void);
|
||||
void sleep_led_enable(void);
|
||||
void sleep_led_disable(void);
|
||||
void sleep_led_toggle(void);
|
||||
|
||||
#else
|
||||
|
||||
#define sleep_led_init()
|
||||
#define sleep_led_enable()
|
||||
#define sleep_led_disable()
|
||||
#define sleep_led_toggle()
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user