Browse Source

Remove old `IS_LED_ON/OFF()` macros (#21878)

pull/21892/head
Ryan 8 months ago
committed by GitHub
parent
commit
a74647c1fa
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions
  1. +0
    -3
      tmk_core/protocol/host.h

+ 0
- 3
tmk_core/protocol/host.h View File

@ -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


Loading…
Cancel
Save