Fixed compile error if LEDs_Disable() is called and BOARD=NONE is set (thanks to Sam Lin).

pull/1469/head
Dean Camera 13 years ago
parent f87aec2264
commit 1971a415e5

@ -27,6 +27,7 @@
* the host state machine * the host state machine
* - Fixed incorrect call to the user callback CALLBACK_Audio_Device_GetSetInterfaceProperty() in the Audio Class device driver (thanks to Tiit Ratsep) * - Fixed incorrect call to the user callback CALLBACK_Audio_Device_GetSetInterfaceProperty() in the Audio Class device driver (thanks to Tiit Ratsep)
* - Fixed compile error for the UC3 architecture when INTERRUPT_CONTROL_ENDPOINT is specified (thanks to Andrus Aaslaid) * - Fixed compile error for the UC3 architecture when INTERRUPT_CONTROL_ENDPOINT is specified (thanks to Andrus Aaslaid)
* - Fixed compile error if LEDs_Disable() is called and BOARD=NONE is set (thanks to Sam Lin)
* - Library Applications: * - Library Applications:
* - None * - None
* *

@ -109,6 +109,7 @@
#if (BOARD == BOARD_NONE) #if (BOARD == BOARD_NONE)
static inline void LEDs_Init(void) {}; static inline void LEDs_Init(void) {};
static inline void LEDs_Disable(void) {};
static inline void LEDs_TurnOnLEDs(const uint_reg_t LEDMask) {}; static inline void LEDs_TurnOnLEDs(const uint_reg_t LEDMask) {};
static inline void LEDs_TurnOffLEDs(const uint_reg_t LEDMask) {}; static inline void LEDs_TurnOffLEDs(const uint_reg_t LEDMask) {};
static inline void LEDs_SetAllLEDs(const uint_reg_t LEDMask) {}; static inline void LEDs_SetAllLEDs(const uint_reg_t LEDMask) {};

Loading…
Cancel
Save