diff options
| author | hathach <[email protected]> | 2013-05-25 16:03:40 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-05-25 16:03:40 +0700 |
| commit | ae02263d817a7b2f37c7e9c5026fd067b9d75fcc (patch) | |
| tree | 6d3f39a6f2ecffbf955acc022785b099a0bbe6cf /tinyusb/hal/hal.h | |
| parent | 9b7f24bef27833d753217dcb76464aec7d15391e (diff) | |
add stub function to able to build device with EA4357
- dcd_controller_reset
- dcd_controller_connect
Diffstat (limited to 'tinyusb/hal/hal.h')
| -rw-r--r-- | tinyusb/hal/hal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tinyusb/hal/hal.h b/tinyusb/hal/hal.h index 2e7cc55ea..d97f5463f 100644 --- a/tinyusb/hal/hal.h +++ b/tinyusb/hal/hal.h @@ -58,13 +58,15 @@ #include "common/compiler/compiler.h" #if MCU == 0 - #error MCU is not defined or supported + #error MCU is not defined or supported yet #elif MCU == MCU_LPC11UXX #include "hal_lpc11uxx.h" #elif MCU == MCU_LPC13UXX #include "hal_lpc13uxx.h" #elif MCU == MCU_LPC43XX #include "hal_lpc43xx.h" +#else + #error MCU is not defined or supported yet #endif #ifdef __cplusplus |
