forked from espressif/arduino-esp32
IDF master 3e370c4296
* Fix build compilation due to changes in the HW_TIMER's structs * Fix compilation warnings and errors with USB * Update USBCDC.cpp * Update CMakeLists.txt * Update HWCDC.cpp
This commit is contained in:
@ -50,6 +50,20 @@
|
||||
#define IDF_PERFORMANCE_MIN_UDP_TX_THROUGHPUT 50
|
||||
#endif
|
||||
|
||||
// throughput performance by ethernet iperf
|
||||
#ifndef IDF_PERFORMANCE_MIN_TCP_RX_ETH_THROUGHPUT
|
||||
#define IDF_PERFORMANCE_MIN_TCP_RX_ETH_THROUGHPUT 20
|
||||
#endif
|
||||
#ifndef IDF_PERFORMANCE_MIN_TCP_TX_ETH_THROUGHPUT
|
||||
#define IDF_PERFORMANCE_MIN_TCP_TX_ETH_THROUGHPUT 30
|
||||
#endif
|
||||
#ifndef IDF_PERFORMANCE_MIN_UDP_RX_ETH_THROUGHPUT
|
||||
#define IDF_PERFORMANCE_MIN_UDP_RX_ETH_THROUGHPUT 50
|
||||
#endif
|
||||
#ifndef IDF_PERFORMANCE_MIN_UDP_TX_ETH_THROUGHPUT
|
||||
#define IDF_PERFORMANCE_MIN_UDP_TX_ETH_THROUGHPUT 70
|
||||
#endif
|
||||
|
||||
// events dispatched per second by event loop library
|
||||
#ifndef IDF_PERFORMANCE_MIN_EVENT_DISPATCH
|
||||
#define IDF_PERFORMANCE_MIN_EVENT_DISPATCH 25000
|
||||
|
Reference in New Issue
Block a user