From 20914c816f4b1407b1bf6804c9aa90f3d83fa1ec Mon Sep 17 00:00:00 2001 From: fauxpark Date: Fri, 1 Sep 2023 15:42:37 +1000 Subject: [PATCH] Remove old `IS_LED_ON/OFF()` macros --- tmk_core/protocol/host.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/tmk_core/protocol/host.h b/tmk_core/protocol/host.h index add408caf640..e4fb3a74f204 100644 --- a/tmk_core/protocol/host.h +++ b/tmk_core/protocol/host.h @@ -23,9 +23,6 @@ along with this program. If not, see . #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