[GH-ISSUE #1329] wifi: addba response cb: ap bss deleted #1141

Closed
opened 2026-02-28 01:28:42 +03:00 by kerem · 8 comments
Owner

Originally created by @Bonv1Arnaud on GitHub (Dec 27, 2021).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1329

Basic Infos

Hardware

WiFimanager Branch/Release: Master

Esp8266/Esp32: ESP32-WROOM-32UE

Core Version: I don't know (I think the newest version)

Description

Problem description :
I upload the example sketch at home. And I was able to connect the ESP on my WiFi.
And now I am in my office and I try with the same board and the same code. I have this error (just bellow)

Settings in IDE

Module: ????

Additional libraries: no

Sketch

#BEGIN
  #include <WiFi.h>                                  //Librairie pour la connexion à un wifi
  #include <WiFiManager.h>                   //Ajout de la librairie pour le WiFi

  WiFiManager wifiManager;                    //Déclaratoin de la class pour le wifi manager

void setup() {
  // put your setup code here, to run once:

  Serial.begin(115200);
  delay(1000);
  wifiManager.resetSettings();

  Serial.println("Creation du AP oblo...");
  wifiManager.autoConnect("AutoConnectAP");

}


void loop() {
  // put your main code here, to run repeatedly:

  Serial.print("Adresse IP: ");
  Serial.println(WiFi.macAddress());
  delay(1000);

} 
#END

Debug Messages

15:32:00.933 -> *wm:[2] Starting Config Portal
15:32:00.933 -> *wm:[2] AccessPoint set password is VALID
15:32:00.933 -> *wm:[2] Disabling STA
15:32:00.933 -> *wm:[2] Enabling AP
15:32:00.933 -> *wm:[1] StartAP with SSID: Oblo_casa
15:32:01.490 -> *wm:[1] AP IP address: 192.168.4.1
15:32:01.490 -> *wm:[1] Starting Web Portal
15:32:01.490 -> *wm:[2] HTTP server started
15:32:01.490 -> *wm:[2] Config Portal Running, blocking, waiting for clients...
15:32:30.629 -> *wm:[2] NUM CLIENTS: 0
15:32:42.884 -> E (42437) wifi:addba response cb: ap bss deleted
15:32:45.974 -> E (45537) wifi:addba response cb: ap bss deleted
15:32:46.488 -> E (46061) wifi:addba response cb: ap bss deleted
15:32:47.003 -> E (46584) wifi:addba response cb: ap bss deleted
15:32:48.079 -> E (47630) wifi:addba response cb: ap bss deleted
15:32:48.592 -> E (48154) wifi:addba response cb: ap bss deleted
15:32:50.367 -> E (49956) wifi:addba response cb: ap bss deleted
15:32:51.954 -> E (51526) wifi:addba response cb: ap bss deleted
15:32:53.500 -> E (53096) wifi:addba response cb: ap bss deleted
15:33:00.657 -> *wm:[2] NUM CLIENTS: 0

messages here
Originally created by @Bonv1Arnaud on GitHub (Dec 27, 2021). Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1329 ### Basic Infos #### Hardware WiFimanager Branch/Release: Master Esp8266/Esp32: ESP32-WROOM-32UE Core Version: I don't know (I think the newest version) ### Description Problem description : I upload the example sketch at home. And I was able to connect the ESP on my WiFi. And now I am in my office and I try with the same board and the same code. I have this error (just bellow) ### Settings in IDE Module: ???? Additional libraries: no ### Sketch ```cpp #BEGIN #include <WiFi.h> //Librairie pour la connexion à un wifi #include <WiFiManager.h> //Ajout de la librairie pour le WiFi WiFiManager wifiManager; //Déclaratoin de la class pour le wifi manager void setup() { // put your setup code here, to run once: Serial.begin(115200); delay(1000); wifiManager.resetSettings(); Serial.println("Creation du AP oblo..."); wifiManager.autoConnect("AutoConnectAP"); } void loop() { // put your main code here, to run repeatedly: Serial.print("Adresse IP: "); Serial.println(WiFi.macAddress()); delay(1000); } #END ``` ### Debug Messages 15:32:00.933 -> *wm:[2] Starting Config Portal 15:32:00.933 -> *wm:[2] AccessPoint set password is VALID 15:32:00.933 -> *wm:[2] Disabling STA 15:32:00.933 -> *wm:[2] Enabling AP 15:32:00.933 -> *wm:[1] StartAP with SSID: Oblo_casa 15:32:01.490 -> *wm:[1] AP IP address: 192.168.4.1 15:32:01.490 -> *wm:[1] Starting Web Portal 15:32:01.490 -> *wm:[2] HTTP server started 15:32:01.490 -> *wm:[2] Config Portal Running, blocking, waiting for clients... 15:32:30.629 -> *wm:[2] NUM CLIENTS: 0 15:32:42.884 -> E (42437) wifi:addba response cb: ap bss deleted 15:32:45.974 -> E (45537) wifi:addba response cb: ap bss deleted 15:32:46.488 -> E (46061) wifi:addba response cb: ap bss deleted 15:32:47.003 -> E (46584) wifi:addba response cb: ap bss deleted 15:32:48.079 -> E (47630) wifi:addba response cb: ap bss deleted 15:32:48.592 -> E (48154) wifi:addba response cb: ap bss deleted 15:32:50.367 -> E (49956) wifi:addba response cb: ap bss deleted 15:32:51.954 -> E (51526) wifi:addba response cb: ap bss deleted 15:32:53.500 -> E (53096) wifi:addba response cb: ap bss deleted 15:33:00.657 -> *wm:[2] NUM CLIENTS: 0 ``` messages here ```
kerem 2026-02-28 01:28:42 +03:00
Author
Owner

@tablatronix commented on GitHub (Dec 27, 2021):

No idea, sounds like an esp issue, are there alot of APs around ?

<!-- gh-comment-id:1001682243 --> @tablatronix commented on GitHub (Dec 27, 2021): No idea, sounds like an esp issue, are there alot of APs around ?
Author
Owner

@Bonv1Arnaud commented on GitHub (Dec 27, 2021):

My office is in a town so I have 8 APs around.

To be sure that the problem was not with the ESP, I tried with three boards ( 2 x ESP32-WROOM32UE & 1 x ESP-DEVKIT.

I have also check the WiFi channel and my esp is in channel 3 and all APs around are in the channel 6 and more

<!-- gh-comment-id:1001683556 --> @Bonv1Arnaud commented on GitHub (Dec 27, 2021): My office is in a town so I have 8 APs around. To be sure that the problem was not with the ESP, I tried with three boards ( 2 x ESP32-WROOM32UE & 1 x ESP-DEVKIT. I have also check the WiFi channel and my esp is in channel 3 and all APs around are in the channel 6 and more
Author
Owner

@tablatronix commented on GitHub (Dec 27, 2021):

The ESP lib.

Power supply issue?

<!-- gh-comment-id:1001685453 --> @tablatronix commented on GitHub (Dec 27, 2021): The ESP lib. Power supply issue?
Author
Owner

@Bonv1Arnaud commented on GitHub (Dec 27, 2021):

image
the APs around
my ESP is "AutoConnectAp"

<!-- gh-comment-id:1001685735 --> @Bonv1Arnaud commented on GitHub (Dec 27, 2021): ![image](https://user-images.githubusercontent.com/95026055/147497138-6e9b8ce3-4d62-44b6-b882-a3b7e3a5d8fb.png) the APs around my ESP is "AutoConnectAp"
Author
Owner

@Bonv1Arnaud commented on GitHub (Dec 27, 2021):

The ESP lib.

Power supply issue?

The ESP is powered with a battery. And during the test the board was powered also with my computer (trough an USB cable)

WiFi manager library : https://github.com/tzapu/WiFiManager
I didn't see the same trouble on the "issues" section of this github

<!-- gh-comment-id:1001687456 --> @Bonv1Arnaud commented on GitHub (Dec 27, 2021): > The ESP lib. > > Power supply issue? The ESP is powered with a battery. And during the test the board was powered also with my computer (trough an USB cable) WiFi manager library : https://github.com/tzapu/WiFiManager I didn't see the same trouble on the "issues" section of this github
Author
Owner

@tablatronix commented on GitHub (Dec 27, 2021):

https://github.com/espressif/arduino-esp32/issues/4052

https://www.esp32.com/viewtopic.php?t=8191

Looks like there was never any solution, I would do a full erase of flash, make sure your esp lib is up to date.

<!-- gh-comment-id:1001689843 --> @tablatronix commented on GitHub (Dec 27, 2021): https://github.com/espressif/arduino-esp32/issues/4052 https://www.esp32.com/viewtopic.php?t=8191 Looks like there was never any solution, I would do a full erase of flash, make sure your esp lib is up to date.
Author
Owner

@yangzhonming commented on GitHub (Mar 28, 2022):

This problem is very strange. I repeatedly burn other programs, and then turn on AP mode. This problem disappears....

<!-- gh-comment-id:1080579721 --> @yangzhonming commented on GitHub (Mar 28, 2022): This problem is very strange. I repeatedly burn other programs, and then turn on AP mode. This problem disappears....
Author
Owner

@kevin4dhd commented on GitHub (Feb 4, 2024):

This problem is very strange. I repeatedly burn other programs, and then turn on AP mode. This problem disappears....

Can you give more details about your solution please, I am also having the same problem

<!-- gh-comment-id:1925601353 --> @kevin4dhd commented on GitHub (Feb 4, 2024): > This problem is very strange. I repeatedly burn other programs, and then turn on AP mode. This problem disappears.... Can you give more details about your solution please, I am also having the same problem
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/WiFiManager#1141
No description provided.