diff options
| author | sakimisu <[email protected]> | 2022-12-11 20:28:10 +0800 |
|---|---|---|
| committer | sakimisu <[email protected]> | 2022-12-11 20:28:10 +0800 |
| commit | 52edc32521425bd201e7d82accefedca64c5c8f7 (patch) | |
| tree | 99762936d651c9d75d8edfdc38d69fd0e0ae3b66 | |
| parent | fc9afb54057fefef8df70e43714965e254d8703b (diff) | |
disable video demo, contact with me to know how to use
| -rw-r--r-- | demo/usb_host.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/demo/usb_host.c b/demo/usb_host.c index aec7af46..9ae79845 100644 --- a/demo/usb_host.c +++ b/demo/usb_host.c @@ -195,6 +195,7 @@ int hid_test(void) return ret; } +#if 0 USB_NOCACHE_RAM_SECTION USB_MEM_ALIGNX uint8_t video_buffer[10 * 1024]; /* just for reference , use ram larger than 4M */ #define VIDEO_ISO_PACKETS 512 @@ -240,7 +241,7 @@ int video_test(void) usb_free(video_urb); return ret; } - +#endif static void usbh_class_test_thread(void *argument) { while (1) { @@ -249,7 +250,7 @@ static void usbh_class_test_thread(void *argument) cdc_acm_test(); msc_test(); hid_test(); - video_test(); + //video_test(); } } |
