Fix channel hopping issue

This commit is contained in:
Spacehuhn 2021-01-12 12:12:08 +01:00
parent 1e93e65355
commit 3e4e699e78
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ void prntln(const uint32_t i) {
/* ===== WiFi ===== */
void setWifiChannel(uint8_t ch) {
if ((ch != wifi_channel) && (ch > 0) && (ch < 15)) {
if (/*(ch != wifi_channel) && (ch > 0) &&*/ (ch < 15)) {
wifi_channel = ch;
wifi_set_channel(wifi_channel);
}