disable device mouse by default

fix hal_debugger_is_attached with lpc11u
This commit is contained in:
hathach
2014-04-19 02:33:30 +07:00
parent d1ecec49d1
commit 9a48a4aa03
3 changed files with 7 additions and 7 deletions

View File

@@ -110,7 +110,7 @@ static inline bool hal_debugger_is_attached(void)
#elif TUSB_CFG_DEBUG == 3
return true; // force to break into breakpoint with debug = 3
#else
return false
return false;
#endif
}