summaryrefslogtreecommitdiff
path: root/tinyusb
diff options
context:
space:
mode:
authorhathach <[email protected]>2018-03-02 15:26:23 +0700
committerhathach <[email protected]>2018-03-02 15:26:23 +0700
commitb6e337bc12c041969687ee8c13dbe5045c4096f8 (patch)
treeb6cad9540f0df1b48c715cfc052438f7f6ecc3d4 /tinyusb
parent4097d022542708ee2bc441552679834477a58cf6 (diff)
more hal update
Diffstat (limited to 'tinyusb')
-rw-r--r--tinyusb/hal/hal.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/tinyusb/hal/hal.h b/tinyusb/hal/hal.h
index cdaa3c773..65b219610 100644
--- a/tinyusb/hal/hal.h
+++ b/tinyusb/hal/hal.h
@@ -83,20 +83,7 @@ void hal_interrupt_enable(uint8_t coreid);
*/
void hal_interrupt_disable(uint8_t coreid);
-//--------------------------------------------------------------------+
-// INCLUDE DRIVEN
-//--------------------------------------------------------------------+
-#if TUSB_CFG_MCU == MCU_LPC11UXX
- #include "hal_lpc11uxx.h"
-#elif TUSB_CFG_MCU == MCU_LPC13UXX
- #include "hal_lpc13uxx.h"
-#elif TUSB_CFG_MCU == MCU_LPC43XX
- #include "mcu/nxp/lpc43xx/usb/hal_lpc43xx.h"
-#elif TUSB_CFG_MCU == MCU_LPC175X_6X
- #include "hal_lpc175x_6x.h"
-#else
- #error MCU is not defined or supported yet
-#endif
+#include "hal_usb.h"
#ifdef __cplusplus
extern "C" {
@@ -114,7 +101,6 @@ static inline bool hal_debugger_is_attached(void)
#endif
}
-static inline void hal_debugger_breakpoint(void) ATTR_ALWAYS_INLINE;
static inline void hal_debugger_breakpoint(void)
{
#ifndef _TEST_