Search found 3 matches

by lanistor
Fri Jul 05, 2024 5:15 am
Forum: ESP-SkaiNet 中文讨论版
Topic: 开启离线唤醒,大概要消耗多少mA的电流?
Replies: 1
Views: 3176

开启离线唤醒,大概要消耗多少mA的电流?

离线语音唤醒,如果常开的话,会增加多少电流消耗?
我们设备用的电池供电,怕撑不了太久。
有大佬知道吗?
by lanistor
Sat Mar 30, 2024 8:46 am
Forum: ESP-IDF
Topic: How to disabled sll verify with esp_http_client?
Replies: 0
Views: 414

How to disabled sll verify with esp_http_client?

I need to disable sll verify in esp_http_client, for some special http requests. And i found the parameter path in `esp_http_client_handle_t`, but the way is unable to achieve, for the private definition. esp_http_client_handle_t client = esp_http_client_init(&config); esp_transport_handle_t tranpor...
by lanistor
Sat Sep 16, 2023 7:51 am
Forum: ESP-IDF 中文讨论版
Topic: 【Bug反馈】电源管理锁在ESP32中不生效,在S3中生效。
Replies: 0
Views: 1145

【Bug反馈】电源管理锁在ESP32中不生效,在S3中生效。

我做了大量的测试,发现电源管理锁在ESP32中不生效,但是在ESP32S3中可以正常工作,我测试了IDF最新的代码(release/v5.1, release/v4.4)都是这样的情况。 我希望这不是IDF的Bug,但是我实在无法解决,请大佬们帮我看下,下面是我的代码: // 启动时 ```cpp void app_main() { esp_err_t ret = nvs_flash_init(); if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) { ESP_ERROR_CHECK(nv...