You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/sensors/humiture/aht20/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ I2C driver and definition of AHT20 humidity and temperature sensor.
5
5
6
6
Components compatible with AHT30 and AHT21 (AHT21 is deprecated).
7
7
8
-
See [AHT20 datasheet](http://www.aosong.com/en/products-32.html), [AHT30 datasheet](http://www.aosong.com/en/products-131.html).
8
+
See [AHT20 datasheet](https://asairsensors.com/wp-content/uploads/2021/09/Data-Sheet-AHT20-Humidity-and-Temperature-Sensor-ASAIR-V1.0.03.pdf), [AHT30 datasheet](https://asairsensors.com/product/aht30-integrated-temperature-and-humidity-sensor/).
Copy file name to clipboardExpand all lines: examples/usb/device/usb_extend_screen/components/espressif__esp_lvgl_port/examples/touchscreen/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,11 @@ Very simple example for demonstration of initialization and usage of the `esp_lv
4
4
5
5
## 1. LCD HW initialization - `app_lcd_init()`
6
6
7
-
Standard HW initialization of the LCD using [`esp_lcd`](https://github.com/espressif/esp-idf/tree/master/components/esp_lcd) component. Settings of this example are fully compatible with [ESP-BOX](https://github.com/espressif/esp-bsp/tree/master/esp-box) board.
7
+
Standard HW initialization of the LCD using [`esp_lcd`](https://github.com/espressif/esp-idf/tree/master/components/esp_lcd) component. Settings of this example are fully compatible with [ESP-BOX](https://github.com/espressif/esp-bsp/tree/master/bsp/esp-box-3) board.
Standard HW initialization of the LCD touch using [`esp_lcd_touch`](https://github.com/espressif/esp-bsp/tree/master/components/lcd_touch/esp_lcd_touch) component. Settings of this example are fully compatible with [ESP-BOX](https://github.com/espressif/esp-bsp/tree/master/esp-box) board.
11
+
Standard HW initialization of the LCD touch using [`esp_lcd_touch`](https://github.com/espressif/esp-bsp/tree/master/components/lcd_touch/esp_lcd_touch) component. Settings of this example are fully compatible with [ESP-BOX](https://github.com/espressif/esp-bsp/tree/master/bsp/esp-box-3) board.
12
12
13
13
## 3. LVGL port initialization - `app_lvgl_init()`
Copy file name to clipboardExpand all lines: examples/usb/device/usb_msc_wireless_disk/README.md
+43Lines changed: 43 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,3 +49,46 @@ This demo has enabled FATFS OEM multi-code page support. To manually adjust mult
49
49
- This option controls the encoding method used by the filenames read by the FATFS API. For more details, please refer to the configuration help.
50
50
- For web development, it is recommended to use UTF-8 encoding.
51
51
52
+
### Wireless Transfer Rate Optimization
53
+
54
+
**For optimal wireless access speeds, it is strongly recommended to use chips or modules with PSRAM, particularly ESP32-S3 equipped with 8MB or larger octal (OCT) PSRAM.**
55
+
56
+
#### Performance Test Results
57
+
58
+
The following chart shows the HTTP file upload speed analysis results with optimized configurations:
-`CONFIG_LWIP_TCPIP_TASK_PRIO=23`: Increases TCP/IP task priority (no RAM impact)
76
+
-`CONFIG_LWIP_IRAM_OPTIMIZATION=y` and `CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION=y`: Enables LWIP IRAM optimization (increases IRAM usage)
77
+
-`CONFIG_LWIP_TCP_SND_BUF_DEFAULT=65535` and `CONFIG_LWIP_TCP_WND_DEFAULT=65535`: Enlarges TCP send and receive windows (significantly increases RAM usage per connection)
0 commit comments