Closed
Description
Basic Infos
- This issue complies with the issue POLICY doc.
- I have read the documentation at readthedocs and the issue is not addressed there.
- I have tested that the issue is present in current master branch (aka latest git).
- I have searched the issue tracker for a similar issue.
- If there is a stack dump, I have decoded it.
- I have filled out all fields below.
Platform
- Hardware: [NodeMCU V1.0]
- Core Version: [Latest Arduino IDE build]
- Development Env: [Arduino IDE]
- Operating System: [MacOS]
Settings in IDE
- Module: [NodeMCU V1.0]
- Flash Mode: [qio|dio|other]
- Flash Size: [4MB (No SPIFFS)]
- lwip Variant: [v2 Higher Bandwidth]
- CPU Frequency: [80Mhz|160MHz]
- Upload Using: [OTA]
Problem Description
With 2.4.2, I consistently see connections circa 20Mbps uplink / downlink and pings below 10m. After updating to 2.5.0 (Beta 1), link speed is significantly reduced and ping times often 20-100ms.
Sketch contains the following parameters:
// Prevent wifi sleeping
WiFi.setSleepMode(WIFI_NONE_SLEEP);
// 802.11n
WiFi.setPhyMode(WIFI_PHY_MODE_11N);
// Station mode
WiFi.mode(WIFI_STA);