Search found 8 matches
- Thu May 02, 2024 10:25 am
- Forum: ESP-IDF
- Topic: esp_wifi_set_config password special characters
- Replies: 4
- Views: 931
- Thu May 02, 2024 6:54 am
- Forum: ESP-IDF
- Topic: esp_wifi_set_config password special characters
- Replies: 4
- Views: 931
Re: esp_wifi_set_config password special characters
Yes, I don't understand either.
We set it as follows, and it works for all other tested password without "special" characters.
We set it as follows, and it works for all other tested password without "special" characters.
Code: Select all
strncpy((char*)wifi_config.sta.password,"pass&word", PW_MAX_LENGHT);
- Wed May 01, 2024 5:16 am
- Forum: ESP-IDF
- Topic: esp_wifi_set_config password special characters
- Replies: 4
- Views: 931
esp_wifi_set_config password special characters
We are struggling with special characters in the wifi sta password, everything works if we use a password with without special characters. ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_STA) ); ESP_ERROR_CHECK(esp_wifi_set_config(WIFI_IF_STA, &wifi_config) ); ESP_ERROR_CHECK(esp_wifi_start() ); If wifi...
- Wed Nov 29, 2023 8:53 am
- Forum: ESP-IDF
- Topic: sdkconfig file updated on build
- Replies: 1
- Views: 1639
sdkconfig file updated on build
Hi, I have created a sdkconfig.defaults file with my required configuration. My project builds fine on my old laptop with the same version of esp-idf (5.0.4), but when I try to build on my new laptop with same version of esp-idf, something weird happens. The sdkconfig file is not updated correctly w...
- Sat Feb 25, 2023 8:24 am
- Forum: ESP-IDF
- Topic: HTTPS cancel download of large file
- Replies: 2
- Views: 1285
Re: HTTPS cancel download of large file
Yes, I thing that maybe could be the reason.
I have tried to run the http client in async mode, but without luck.
Have created another forum question on this problem.
I have tried to run the http client in async mode, but without luck.
Have created another forum question on this problem.
- Sat Feb 25, 2023 7:21 am
- Forum: ESP-IDF
- Topic: HTTP client fail in async mode
- Replies: 0
- Views: 957
HTTP client fail in async mode
I'm trying run the http client in async mode. I works fine running in blocking mode, but when I change to async mode it fails, with the failure below. The only thing I changed in my code was: esp_http_client_config_t config = { .method = method, .url = url, .event_handler = _http_event_handler, .crt...
- Fri Feb 24, 2023 4:55 pm
- Forum: ESP-IDF
- Topic: HTTPS cancel download of large file
- Replies: 2
- Views: 1285
HTTPS cancel download of large file
We are downloading a large file using HTTPS and calling "esp_http_client_perform()" in blocked mode. Our App requires possibility for canceling the download, we have implemented a function that calls: esp_http_client_close(client) The call is made from another task than the download task. This works...
- Mon Jan 09, 2023 8:34 am
- Forum: ESP-IDF
- Topic: Wifi carrier mode for production testing
- Replies: 0
- Views: 798
Wifi carrier mode for production testing
We would like to set our ESP32-wrover module into Wifi constant carrier or modulated carrier. This is needed as a step in our production testing, to check that Wifi output power is ok in the assembled product. To reduce production time, this should be done from our general device firmware, and not a...