Search found 5 matches

by bfriedkin
Mon Jun 29, 2020 10:48 pm
Forum: ESP-IDF
Topic: NimBLE - where is code that manages persistent bonding
Replies: 3
Views: 4360

Re: NimBLE - where is code that manages persistent bonding

Felipe -

Thank you for the helpful answer. That is what I was looking for.

Regards,
Brian
by bfriedkin
Mon Jun 29, 2020 12:55 am
Forum: ESP-IDF
Topic: NimBLE - where is code that manages persistent bonding
Replies: 3
Views: 4360

NimBLE - where is code that manages persistent bonding

Hello - This is a follow-up on this topic that covers persistent storage of the keys required to maintain device bonds across ESP32 reboots: https://www.esp32.com/viewtopic.php?t=13049 Simple question: Where is the code that reads and writes the persistent data? Looking at the ble_hs_cfg store callb...
by bfriedkin
Wed Nov 28, 2018 2:18 am
Forum: ESP-IDF
Topic: Wi-Fi station mode: Setting BSSID and/or channel does not accelerate connection
Replies: 9
Views: 13775

Re: Wi-Fi station mode: Setting BSSID and/or channel does not accelerate connection

Hello littlesky -

Thank you for your reply.

We do specify both the channel and BSSID when connecting to the access point on ESP32. Please refer to my original post.

Are there any other configuration options that I missed?

- Brian
by bfriedkin
Tue Nov 27, 2018 5:54 pm
Forum: ESP-IDF
Topic: Wi-Fi station mode: Setting BSSID and/or channel does not accelerate connection
Replies: 9
Views: 13775

Re: Wi-Fi station mode: Setting BSSID and/or channel does not accelerate connection

Hello liuzhifu - Thank you for the follow-up. We do effectively set WIFI_FAST_SCAN mode, because we first initialize the wifi_config_t to all zeros: wifi_config_t config; memset(&config, 0, sizeof(config)); ... In esp_wifi_types: typedef enum { WIFI_FAST_SCAN = 0, /**< Do fast scan, scan will end af...
by bfriedkin
Sat Nov 24, 2018 10:36 pm
Forum: ESP-IDF
Topic: Wi-Fi station mode: Setting BSSID and/or channel does not accelerate connection
Replies: 9
Views: 13775

Wi-Fi station mode: Setting BSSID and/or channel does not accelerate connection

Hello - On the ESP8266, we have found that specifying the access point BSSID in the station_config before calling wifi_station_set_config_current() accelerates the connection by about 50%. Further, if we additionally set the channel via wifi_set_channel() after calling wifi_station_set_config_curren...