mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-18 16:26:31 +00:00
Fix ESP32 phy mode detection
This commit is contained in:
parent
2f47a4b5c9
commit
43171d12a7
@ -19,6 +19,7 @@
|
|||||||
//
|
//
|
||||||
#include "Arduino.h"
|
#include "Arduino.h"
|
||||||
#include <ESP8266WiFi.h>
|
#include <ESP8266WiFi.h>
|
||||||
|
#include <esp_wifi.h>
|
||||||
|
|
||||||
//
|
//
|
||||||
// Wifi
|
// Wifi
|
||||||
@ -35,7 +36,15 @@ void WiFiClass32::setSleepMode(int iSleepMode)
|
|||||||
|
|
||||||
int WiFiClass32::getPhyMode()
|
int WiFiClass32::getPhyMode()
|
||||||
{
|
{
|
||||||
return 0; // " BGN"
|
int phy_mode = 0; // " BGNL"
|
||||||
|
uint8_t protocol_bitmap;
|
||||||
|
if (esp_wifi_get_protocol(WIFI_IF_STA, &protocol_bitmap) == ESP_OK) {
|
||||||
|
if (protocol_bitmap & 1) { phy_mode = 1; } // 11b
|
||||||
|
if (protocol_bitmap & 2) { phy_mode = 2; } // 11g
|
||||||
|
if (protocol_bitmap & 4) { phy_mode = 3; } // 11n
|
||||||
|
if (protocol_bitmap & 8) { phy_mode = 4; } // Low rate
|
||||||
|
}
|
||||||
|
return phy_mode;
|
||||||
}
|
}
|
||||||
|
|
||||||
void WiFiClass32::wps_disable()
|
void WiFiClass32::wps_disable()
|
||||||
|
@ -163,7 +163,7 @@ void WiFiSetSleepMode(void)
|
|||||||
|
|
||||||
void WifiBegin(uint8_t flag, uint8_t channel)
|
void WifiBegin(uint8_t flag, uint8_t channel)
|
||||||
{
|
{
|
||||||
const char kWifiPhyMode[] = " BGN";
|
const char kWifiPhyMode[] = " bgnl";
|
||||||
|
|
||||||
#ifdef USE_EMULATION
|
#ifdef USE_EMULATION
|
||||||
UdpDisconnect();
|
UdpDisconnect();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user