diff options
| author | hathach <[email protected]> | 2018-10-24 16:51:07 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-10-24 16:51:07 +0700 |
| commit | 8144be262bf418c96d16e26418e058a622c37007 (patch) | |
| tree | 98225d9e859d9eba192521a0ab15d40cb38f863b /examples/device | |
| parent | 87d89cf5cbc42bc905654cca92c8a1809183a23d (diff) | |
clean up
Diffstat (limited to 'examples/device')
| -rw-r--r-- | examples/device/nrf52840/src/tusb_config.h | 2 | ||||
| -rw-r--r-- | examples/device/nrf52840_freertos/src/tusb_config.h | 10 |
2 files changed, 7 insertions, 5 deletions
diff --git a/examples/device/nrf52840/src/tusb_config.h b/examples/device/nrf52840/src/tusb_config.h index 775792382..680036859 100644 --- a/examples/device/nrf52840/src/tusb_config.h +++ b/examples/device/nrf52840/src/tusb_config.h @@ -81,7 +81,7 @@ // #define CFG_TUD_DESC_PID 0x0001 //------------- CLASS -------------// -#define CFG_TUD_CDC 0 +#define CFG_TUD_CDC 1 #define CFG_TUD_MSC 1 #define CFG_TUD_HID 0 diff --git a/examples/device/nrf52840_freertos/src/tusb_config.h b/examples/device/nrf52840_freertos/src/tusb_config.h index cadff0403..96d851f90 100644 --- a/examples/device/nrf52840_freertos/src/tusb_config.h +++ b/examples/device/nrf52840_freertos/src/tusb_config.h @@ -39,6 +39,8 @@ #ifndef _TUSB_CONFIG_H_ #define _TUSB_CONFIG_H_ +#include "bsp/board.h" + #ifdef __cplusplus extern "C" { #endif @@ -82,9 +84,9 @@ #define CFG_TUD_CDC 1 #define CFG_TUD_MSC 1 -#define CFG_TUD_HID 1 -#define CFG_TUD_HID_KEYBOARD 1 -#define CFG_TUD_HID_MOUSE 1 +#define CFG_TUD_HID 0 +#define CFG_TUD_HID_KEYBOARD 0 +#define CFG_TUD_HID_MOUSE 0 /* Use Boot Protocol for Keyboard, Mouse. Enable this will create separated HID interface * require more IN endpoints. If disabled, they they are all packed into a single @@ -112,7 +114,7 @@ #define CFG_TUD_MSC_BUFSIZE 512 // Number of Blocks -#define CFG_TUD_MSC_BLOCK_NUM 16 +#define CFG_TUD_MSC_BLOCK_NUM BOARD_MSC_FLASH_SIZE/CFG_TUD_MSC_BLOCK_SZ // Block size #define CFG_TUD_MSC_BLOCK_SZ 512 |
