diff options
author | Ryan <fauxpark@gmail.com> | 2023-09-03 12:24:52 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-03 03:24:52 +0100 |
commit | a74647c1fa6dc19a8aa5a5eed7eb08557c74c993 (patch) | |
tree | bb157ac9f064ce464fbab8269053a7ba8273a5fd /tmk_core | |
parent | c6b979b162523f9b4e4f0f1aef69c7e6dc1f2945 (diff) |
Remove old `IS_LED_ON/OFF()` macros (#21878)
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/protocol/host.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tmk_core/protocol/host.h b/tmk_core/protocol/host.h index add408caf6..e4fb3a74f2 100644 --- a/tmk_core/protocol/host.h +++ b/tmk_core/protocol/host.h @@ -23,9 +23,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "host_driver.h" #include "led.h" -#define IS_LED_ON(leds, led_name) ((leds) & (1 << (led_name))) -#define IS_LED_OFF(leds, led_name) (~(leds) & (1 << (led_name))) - #ifdef __cplusplus extern "C" { #endif |