Skip to content

v1.0.3 lost ability to connect to an access point; v1.0.2 works #3225

@ssilverman

Description

@ssilverman

I'm trying to run a simple program that connects to a Wi-Fi access point. Quite simply, v1.0.2 can connect to a 2.4GHz access point but v1.0.3 cannot. I'm using the following code snippet, but the WiFiClient example works just as well for testing, after changing the SSID and password.

constexpr char kSSID[] = "SSID";
constexpr char kPassword[] = "Password";

void setup() {
  Serial.begin(115200);
  while (!Serial && millis() < 4000) {
    // Wait for Serial initialization
  }

  Serial.printf("Connecting to \"%s\"...", kSSID);
  WiFi.begin(kSSID, kPassword);
  while (!WiFi.isConnected()) {
    Serial.print(".");
    delay(500);
  }
  Serial.println("connected.");
}

void loop() {
}

The program never connects with v1.0.3 but does with v1.0.2.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Status: StaleIssue is stale stage (outdated/stuck)

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions