diff options
author | tmk <nobody@nowhere> | 2013-03-15 22:22:57 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-03-16 17:24:05 +0900 |
commit | f0c5f1b910ecf9536e5b95cc4ca9a43b0f4b2c36 (patch) | |
tree | f68e720804c1c82109c1de19dc3cc7d9eb2cabf0 /common/sleep_led.h | |
parent | 42f6ff088652827a82474c3a07f4c2c9497bacd9 (diff) |
Add breathing sleep LED during USB suspend
Diffstat (limited to 'common/sleep_led.h')
-rw-r--r-- | common/sleep_led.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/common/sleep_led.h b/common/sleep_led.h new file mode 100644 index 0000000000..aebdbeaa5a --- /dev/null +++ b/common/sleep_led.h @@ -0,0 +1,10 @@ +#ifndef SLEEP_LED_H +#define SLEEP_LED_H + +#define NO_SUSPEND_POWER_DOWN + +void sleep_led_init(void); +void sleep_led_enable(void); +void sleep_led_disable(void); + +#endif |