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

This commit is contained in:
Drashna Jaelre 2019-03-19 07:37:22 -07:00 committed by MechMerlin
parent afdc67184d
commit 29bfd634e1
1 changed files with 10 additions and 0 deletions

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();