diff --git a/demos/device/device_os_none/device_os_none.uvopt b/demos/device/device_os_none/device_os_none.uvopt index c86d08cf..7a1697e9 100644 --- a/demos/device/device_os_none/device_os_none.uvopt +++ b/demos/device/device_os_none/device_os_none.uvopt @@ -956,7 +956,7 @@ 0 3 0 - 72 + 73 76 0 ..\src\main.c @@ -1004,7 +1004,7 @@ 0 1 0 - 108 + 106 112 0 ..\src\keyboard_device_app.c @@ -1092,7 +1092,7 @@ 0 6 0 - 58 + 56 61 0 ..\..\..\tinyusb\tusb.c @@ -1396,7 +1396,7 @@ 0 47 0 - 422 + 417 427 0 ..\..\..\tinyusb\device\usbd.c @@ -2012,7 +2012,7 @@ 0 54 0 - 155 + 156 160 0 ..\..\..\mcu\lpc43xx\keil\startup_LPC43xx.s diff --git a/demos/device/src/tusb_config.h b/demos/device/src/tusb_config.h index 1cb8aef2..f653b85f 100644 --- a/demos/device/src/tusb_config.h +++ b/demos/device/src/tusb_config.h @@ -57,7 +57,7 @@ //------------- CLASS -------------// #define TUSB_CFG_DEVICE_HID_KEYBOARD 1 -#define TUSB_CFG_DEVICE_HID_MOUSE 1 +#define TUSB_CFG_DEVICE_HID_MOUSE 0 #define TUSB_CFG_DEVICE_HID_GENERIC 0 // not supported yet #define TUSB_CFG_DEVICE_MSC 1 #define TUSB_CFG_DEVICE_CDC 1 diff --git a/tinyusb/hal/hal.h b/tinyusb/hal/hal.h index 650c16ec..da7ef63c 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 }