summaryrefslogtreecommitdiff
path: root/tinyusb/hal
diff options
context:
space:
mode:
authorhathach <[email protected]>2014-04-19 02:33:30 +0700
committerhathach <[email protected]>2014-04-19 02:33:30 +0700
commit9a48a4aa0318cc499369758b6cbafe9088fb85bb (patch)
treee51dc5333c59a14797cb3ccd68b947e111b89819 /tinyusb/hal
parentd1ecec49d1ae5d6e943f8544002699e3e13a0e1d (diff)
disable device mouse by default
fix hal_debugger_is_attached with lpc11u
Diffstat (limited to 'tinyusb/hal')
-rw-r--r--tinyusb/hal/hal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/hal/hal.h b/tinyusb/hal/hal.h
index 650c16eca..da7ef63c7 100644
--- a/tinyusb/hal/hal.h
+++ b/tinyusb/hal/hal.h
@@ -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
}