aboutsummaryrefslogtreecommitdiff
path: root/tmk_core
diff options
context:
space:
mode:
authorDidierLoiseau <didierloiseau+github@gmail.com>2019-01-18 02:28:33 +0100
committerDrashna Jaelre <drashna@live.com>2019-01-17 17:28:33 -0800
commit94ba2e5a9f9c01b015b447554bfee99f5bcee032 (patch)
treee43aaab00774e4d69e9c440eba1e4d2b4e523639 /tmk_core
parent77399bfe515f4dde5cb6c08dbc466ac1aa77cda3 (diff)
downloadqmk_firmware-94ba2e5a9f9c01b015b447554bfee99f5bcee032.tar.gz
qmk_firmware-94ba2e5a9f9c01b015b447554bfee99f5bcee032.zip
Defined IS_(HOST_)LED_ON/OFF() and improved LED documentation (#4853)
* Defined IS_(HOST_)LED_ON/OFF() and improved LED documentation * Update docs/custom_quantum_functions.md Co-Authored-By: DidierLoiseau <didierloiseau+github@gmail.com> * Update docs/custom_quantum_functions.md Co-Authored-By: DidierLoiseau <didierloiseau+github@gmail.com> * Integrated @drashna and @fauxpark's PR comments - changed all plurals of "LED" to "LEDs" in the file - rewording of the note about host_keyboard_leds() vs. led_set_user() * Update docs/custom_quantum_functions.md Co-Authored-By: DidierLoiseau <didierloiseau+github@gmail.com>
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/common/host.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/tmk_core/common/host.h b/tmk_core/common/host.h
index aeabba710..e70bb6853 100644
--- a/tmk_core/common/host.h
+++ b/tmk_core/common/host.h
@@ -46,6 +46,12 @@ void host_consumer_send(uint16_t data);
46uint16_t host_last_system_report(void); 46uint16_t host_last_system_report(void);
47uint16_t host_last_consumer_report(void); 47uint16_t host_last_consumer_report(void);
48 48
49#define IS_LED_ON(USB_LED, LED_NAME) ((USB_LED) & (1 << (LED_NAME)))
50#define IS_LED_OFF(USB_LED, LED_NAME) (~(USB_LED) & (1 << (LED_NAME)))
51
52#define IS_HOST_LED_ON(LED_NAME) IS_LED_ON(host_keyboard_leds(), (LED_NAME))
53#define IS_HOST_LED_OFF(LED_NAME) IS_LED_OFF(host_keyboard_leds(), (LED_NAME))
54
49#ifdef __cplusplus 55#ifdef __cplusplus
50} 56}
51#endif 57#endif