Skip to content

Commit f7450a5

Browse files
committed
better Rx/Tx Bytes; binaries
1 parent 7b30b80 commit f7450a5

20 files changed

Lines changed: 16 additions & 15 deletions

components/cmd_router/cmd_router.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1342,7 +1342,7 @@ static int show(int argc, char **argv)
13421342
wifi_ap_record_t ap_info;
13431343
if (esp_wifi_sta_get_ap_info(&ap_info) == ESP_OK) {
13441344
#if WIFI_HAS_5GHZ
1345-
printf("Uplink AP: connected (ch %d, %s, %d dBm)\n",
1345+
printf("Uplink STA: connected (ch %d, %s, %d dBm)\n",
13461346
ap_info.primary,
13471347
ap_info.primary > 14 ? "5 GHz" : "2.4 GHz",
13481348
ap_info.rssi);
@@ -1382,7 +1382,8 @@ static int show(int argc, char **argv)
13821382
// CPU temperature
13831383
{
13841384
temperature_sensor_handle_t tsens;
1385-
temperature_sensor_config_t tsens_cfg = TEMPERATURE_SENSOR_CONFIG_DEFAULT(-10, 80);
1385+
temperature_sensor_config_t tsens_cfg = TEMPERATURE_SENSOR_CONFIG_DEFAULT(20, 100);
1386+
//temperature_sensor_config_t tsens_cfg = TEMPERATURE_SENSOR_CONFIG_DEFAULT(-10, 80);
13861387
if (temperature_sensor_install(&tsens_cfg, &tsens) == ESP_OK) {
13871388
float celsius = 0.0f;
13881389
temperature_sensor_enable(tsens);

esp_nat_bridge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def _require(value: Optional[str], name: str):
227227

228228
@mcp.tool()
229229
async def show_status() -> str:
230-
"""Show router status: whether it is connected to WiFi, its IP addresses, how many clients are connected, traffic statistics, and free memory."""
230+
"""Show router status: whether it is connected to WiFi, its IP addresses, how many clients are connected, traffic (shown as B/KB/MB/GB), and free memory."""
231231
return await _cmd("show status")
232232

233233

firmware_esp32/bootloader.bin

0 Bytes
Binary file not shown.

firmware_esp32/build_info.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ESP32 NAT Router Build Information
22
=================================
33
Target: ESP32 (Original) (esp32)
4-
Build Time: 2026-04-26 20:54:40
5-
Git Hash: 5c441a5
4+
Build Time: 2026-04-30 18:00:42
5+
Git Hash: eea554d
66
Binary Files: 4
77
Build Directory: build
-6.69 KB
Binary file not shown.

firmware_esp32c3/bootloader.bin

0 Bytes
Binary file not shown.

firmware_esp32c3/build_info.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ESP32 NAT Router Build Information
22
=================================
33
Target: ESP32-C3 (esp32c3)
4-
Build Time: 2026-04-26 21:12:21
5-
Git Hash: 5c441a5
4+
Build Time: 2026-04-30 18:21:29
5+
Git Hash: eea554d
66
Binary Files: 4
77
Build Directory: build
-6.84 KB
Binary file not shown.

firmware_esp32c5/bootloader.bin

0 Bytes
Binary file not shown.

firmware_esp32c5/build_info.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ESP32 NAT Router Build Information
22
=================================
33
Target: ESP32-C5 (esp32c5)
4-
Build Time: 2026-04-26 21:05:19
5-
Git Hash: 5c441a5
4+
Build Time: 2026-04-30 18:13:23
5+
Git Hash: eea554d
66
Binary Files: 4
77
Build Directory: build

0 commit comments

Comments
 (0)