diff options
| author | hathach <[email protected]> | 2013-01-19 00:57:58 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-01-19 00:57:58 +0700 |
| commit | cfe7a3d23b4639c3578b166fc865450bc439d82c (patch) | |
| tree | 7a831618538324b04bfd9e0f918a78a0aea92b34 /demos | |
| parent | d8c8b9e38ad94ab84c24f22c2ecb79ce4d78b7ba (diff) | |
change error type to lower case for more consistency
change Error Enum to TUSB prefix for more consistency
start to add check for OS configure
Diffstat (limited to 'demos')
| -rw-r--r-- | demos/device/keyboard/tusb_config.h | 5 | ||||
| -rw-r--r-- | demos/host/tusb_config.h | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/demos/device/keyboard/tusb_config.h b/demos/device/keyboard/tusb_config.h index 877b41712..e5fe4e6c8 100644 --- a/demos/device/keyboard/tusb_config.h +++ b/demos/device/keyboard/tusb_config.h @@ -59,15 +59,16 @@ #define TUSB_CFG_DEVICE /// Enable CDC Support -//#define TUSB_CFG_DEVICE_CDC +#define TUSB_CFG_DEVICE_CDC /// Enable HID Keyboard support #define TUSB_CFG_DEVICE_HID_KEYBOARD /// Enable HID Mouse support -//#define TUSB_CFG_DEVICE_HID_MOUSE +#define TUSB_CFG_DEVICE_HID_MOUSE #define TUSB_CFG_DEBUG 3 +#define TUSB_CFG_OS TUSB_OS_NONE #ifdef __CODE_RED // make use of code red's support for ram region macros #if (MCU == MCU_LPC11UXX) || (MCU == MCU_LPC13UXX) diff --git a/demos/host/tusb_config.h b/demos/host/tusb_config.h index ae2d29b70..52e2506cf 100644 --- a/demos/host/tusb_config.h +++ b/demos/host/tusb_config.h @@ -71,6 +71,8 @@ #define TUSB_CFG_DEBUG 3 +#define TUSB_CFG_OS TUSB_OS_NONE + #ifdef __CODE_RED // make use of code red's support for ram region macros #if (MCU == MCU_LPC11UXX) || (MCU == MCU_LPC13UXX) #define TUSB_RAM_SECTION ".data.$RAM2" |
