Skip to content

Commit b203d9e

Browse files
authored
Merge pull request #3143 from Precidata/fix-epsize
Fix TUH_EPSIZE_BULK_MPS macro
2 parents d61077c + d533650 commit b203d9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/host/usbh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
//--------------------------------------------------------------------+
4343

4444
// Endpoint Bulk size depending on host mx speed
45-
#define TUH_EPSIZE_BULK_MPS (TUD_OPT_HIGH_SPEED ? TUSB_EPSIZE_BULK_HS : TUSB_EPSIZE_BULK_FS)
45+
#define TUH_EPSIZE_BULK_MPS (TUH_OPT_HIGH_SPEED ? TUSB_EPSIZE_BULK_HS : TUSB_EPSIZE_BULK_FS)
4646

4747
// forward declaration
4848
struct tuh_xfer_s;

0 commit comments

Comments
 (0)