diff options
| author | sakumisu <[email protected]> | 2025-11-05 20:40:01 +0800 |
|---|---|---|
| committer | sakumisu <[email protected]> | 2025-11-05 20:40:09 +0800 |
| commit | 316c46e79768941df4c244c17efdb6ced9630f3a (patch) | |
| tree | 5fdce2f0cc06393515fa65e714bd32c0387c3df3 | |
| parent | 5a4b68608bbb4bd48f82fae18708fa5bf719003d (diff) | |
update(platform/rtthread): change LWIP_NO_RX_THREAD check error to warning
Signed-off-by: sakumisu <[email protected]>
| -rw-r--r-- | platform/rtthread/usbh_lwip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/rtthread/usbh_lwip.c b/platform/rtthread/usbh_lwip.c index 34dc3850..712847c4 100644 --- a/platform/rtthread/usbh_lwip.c +++ b/platform/rtthread/usbh_lwip.c @@ -25,7 +25,7 @@ #endif #ifndef LWIP_NO_RX_THREAD -#error must enable LWIP_NO_RX_THREAD, we do not use rtthread eth rx thread +#warning suggest you to enable LWIP_NO_RX_THREAD, we do not use rtthread eth rx thread #endif #ifndef LWIP_NO_TX_THREAD @@ -33,7 +33,7 @@ #endif #if LWIP_TCPIP_CORE_LOCKING_INPUT != 1 -#warning suggest you to set LWIP_TCPIP_CORE_LOCKING_INPUT to 1, usb handles eth input with own thread +#warning suggest you to set LWIP_TCPIP_CORE_LOCKING_INPUT to 1 for better performance, usb handles eth input with own thread #endif #if LWIP_TCPIP_CORE_LOCKING != 1 |
