We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d4fb5f commit cafc1c6Copy full SHA for cafc1c6
libraries/WiFi/src/WiFiGeneric.cpp
@@ -598,9 +598,9 @@ bool WiFiGenericClass::mode(wifi_mode_t m) {
598
}
599
} else {
600
#if CONFIG_SOC_WIFI_HE_SUPPORT
601
-#define WIFI_PROTOCOL_DEFAULT (WIFI_PROTOCOL_11B|WIFI_PROTOCOL_11G|WIFI_PROTOCOL_11N|WIFI_PROTOCOL_11AX)
+#define WIFI_PROTOCOL_DEFAULT (WIFI_PROTOCOL_11B | WIFI_PROTOCOL_11G | WIFI_PROTOCOL_11N | WIFI_PROTOCOL_11AX)
602
#else
603
-#define WIFI_PROTOCOL_DEFAULT (WIFI_PROTOCOL_11B|WIFI_PROTOCOL_11G|WIFI_PROTOCOL_11N)
+#define WIFI_PROTOCOL_DEFAULT (WIFI_PROTOCOL_11B | WIFI_PROTOCOL_11G | WIFI_PROTOCOL_11N)
604
#endif
605
uint8_t current_protocol = 0;
606
if (m & WIFI_MODE_STA) {
0 commit comments