Browse Source

Fix dk60 compiler issue on newer compiler versions (#5444)

pull/5448/head
Drashna Jaelre 5 years ago
committed by MechMerlin
parent
commit
29bfd634e1
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      keyboards/dk60/dk60.c

+ 10
- 0
keyboards/dk60/dk60.c View File

@ -1,5 +1,15 @@
#include "dk60.h"
extern inline void dk60_caps_led_on(void);
extern inline void dk60_esc_led_on(void);
extern inline void dk60_caps_led_off(void);
extern inline void dk60_esc_led_off(void);
extern inline void dk60_led_all_on(void);
extern inline void dk60_led_all_off(void);
void dk60_blink_all_leds(void)
{
dk60_led_all_off();


Loading…
Cancel
Save