diff options
| author | hathach <[email protected]> | 2013-11-14 14:12:07 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-11-14 14:12:07 +0700 |
| commit | 6e8440afe555cc8c47b8ef1fdce56bb5d37231a8 (patch) | |
| tree | 6fb3e3bf2e3d0e71fe8ed22e17134c7b74591b1a /tinyusb/hal | |
| parent | 7d84139bd4e69e0b4cb42fb638a7a6d52afe93de (diff) | |
complete double buffering for queueing xfer for lpc11u/13u requried by msc device
Diffstat (limited to 'tinyusb/hal')
| -rw-r--r-- | tinyusb/hal/hal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/hal/hal.h b/tinyusb/hal/hal.h index a48852be3..c6f44f47c 100644 --- a/tinyusb/hal/hal.h +++ b/tinyusb/hal/hal.h @@ -110,7 +110,7 @@ static inline bool hal_debugger_is_attached(void) #if !defined(_TEST_) && !(MCU==MCU_LPC11UXX) return ( (CoreDebug->DHCSR & CoreDebug_DHCSR_C_DEBUGEN_Msk) == CoreDebug_DHCSR_C_DEBUGEN_Msk ); #else - return false; + return true; // force to break into breakpoint #endif } |
