diff options
| author | hathach <[email protected]> | 2014-04-19 02:33:30 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2014-04-19 02:33:30 +0700 |
| commit | 9a48a4aa0318cc499369758b6cbafe9088fb85bb (patch) | |
| tree | e51dc5333c59a14797cb3ccd68b947e111b89819 /tinyusb/hal | |
| parent | d1ecec49d1ae5d6e943f8544002699e3e13a0e1d (diff) | |
disable device mouse by default
fix hal_debugger_is_attached with lpc11u
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 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
}
|
