summaryrefslogtreecommitdiff
path: root/src/class/net
diff options
context:
space:
mode:
authorPeter Lawrence <[email protected]>2020-03-04 17:54:11 -0600
committerPeter Lawrence <[email protected]>2020-03-04 17:54:11 -0600
commitd74facfd0aede63da35c067ae8b8f3e4ed29ac6f (patch)
tree475c67b6e195103bd856b3ff8c51790e39d337f8 /src/class/net
parent093b1381f2892994c25de7927544882a7e7e9d1c (diff)
usbnet RNDIS correction
Diffstat (limited to 'src/class/net')
-rw-r--r--src/class/net/net_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/class/net/net_device.c b/src/class/net/net_device.c
index c918e5874..d0d32e909 100644
--- a/src/class/net/net_device.c
+++ b/src/class/net/net_device.c
@@ -64,7 +64,7 @@ CFG_TUSB_MEM_SECTION CFG_TUSB_MEM_ALIGN static uint8_t received[CFG_TUD_NET_PACK
CFG_TUSB_MEM_SECTION CFG_TUSB_MEM_ALIGN static uint8_t transmitted[CFG_TUD_NET_PACKET_PREFIX_LEN + CFG_TUD_NET_MTU + CFG_TUD_NET_PACKET_PREFIX_LEN];
#if CFG_TUD_NET == OPT_NET_RNDIS
- CFG_TUSB_MEM_SECTION CFG_TUSB_MEM_ALIGN static uint8_t rndis_buf[128];
+ CFG_TUSB_MEM_SECTION CFG_TUSB_MEM_ALIGN static uint8_t rndis_buf[120];
#endif
//--------------------------------------------------------------------+