mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-02-05 00:15:30 +00:00
Fix index page performance for LN882H (#1180)
This commit is contained in:
@ -771,7 +771,8 @@ int http_fn_index(http_request_t* request) {
|
||||
}
|
||||
if (Main_HasWiFiConnected())
|
||||
{
|
||||
hprintf255(request, "<h5>Wifi RSSI: %s (%idBm)</h5>", str_rssi[wifi_rssi_scale(HAL_GetWifiStrength())], HAL_GetWifiStrength());
|
||||
int rssi = HAL_GetWifiStrength();
|
||||
hprintf255(request, "<h5>Wifi RSSI: %s (%idBm)</h5>", str_rssi[wifi_rssi_scale(rssi)], rssi);
|
||||
}
|
||||
#if PLATFORM_BEKEN
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user