diff options
| author | hathach <[email protected]> | 2021-09-13 16:49:38 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2021-09-13 16:49:38 +0700 |
| commit | cdc63459ebf5bd979d1e98253abd3d75693dcdaf (patch) | |
| tree | a94b5c00fc3d7be813a4661348dc65540ca8840a /examples | |
| parent | e64bfb9ff53647e21ba755c4ae4aa6bb3f2677ac (diff) | |
esp32sx implement dcd_remote_wakeup(), fully compliance to chapter9 test suite
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/device/hid_composite_freertos/src/tusb_config.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/device/hid_composite_freertos/src/tusb_config.h b/examples/device/hid_composite_freertos/src/tusb_config.h index 4b0458ef0..4fbccc294 100644 --- a/examples/device/hid_composite_freertos/src/tusb_config.h +++ b/examples/device/hid_composite_freertos/src/tusb_config.h @@ -67,8 +67,9 @@ // This examples use FreeRTOS #define CFG_TUSB_OS OPT_OS_FREERTOS -// CFG_TUSB_DEBUG is defined by compiler in DEBUG build -// #define CFG_TUSB_DEBUG 0 +#ifndef CFG_TUSB_DEBUG +#define CFG_TUSB_DEBUG 0 +#endif /* USB DMA on some MCUs can only access a specific SRAM region with restriction on alignment. * Tinyusb use follows macros to declare transferring memory so that they can be put |
