完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
我司准备用esp32-c3的芯片做主控来开发一tracker类的产品,其中功耗是关键参数,应用场景是蓝牙与手机保持连接、wifi作辅助定位。目前我们买了两块开发板:ESP32-C3-DevKitM-1,想在次开发板上测试一下在蓝牙保持连接的情况下的功耗。
阅读文档,要满足我们的需求,需要ble进入light-sleep模式,根据文档我们做了如下修改: 1.在开发板的GPIO0GPIO1两个引脚上加入了外部32K的晶振,如附图所示: 2.已示例程序为基础:ESP_IDFexamplesbluetoothbluedroidblegatt_server_service_table, (1):Enable Power Management: menuconfig ---> Component config ---> Power management ---> Support for power management (2):Enable tickless Idle: menuconfig ---> Component config ---> FreeRTOS ---> Tickless idle support (3) Minimum number of ticks to enter sleep mode for (NEW) Note: Tickless idle needs to be enabled to allow automatic light sleep. FreeRTOS will enter light sleep if no tasks need to run for 3(by default) ticks, that is 30ms if tick rate is 100Hz. Configure the FreeRTOS tick rate to be higher if you want to allow shorter duration light sleep, for example: menuconfig ---> Component config ---> FreeRTOS -> (1000) Tick rate (Hz) (3):Configure external 32.768Hz crystal as RTC clock source: menuconfig ---> Component config ---> ESP32-specific ---> RTC clock source (External 32kHz crystal) Additional current for external 32kHz crystal Note that the "additional current" option is a workaround for a hardware issue on ESP32 that the crystal can fail in oscillating. Please enable this option when you use external 32kHz crystal. This hardware issue will be resolved in the next ECO chip. (4):Enable Bluetooth modem sleep with external 32.768kHz crystal as low power clock: menuconfig ---> Component config ---> Bluetooth ---> Bluetooth controller ---> MODEM SLEEP Options ---> Bluetooth modem sleep Bluetooth Modem sleep mode (ORIG mode(sleep with low power clock)) Bluetooth low power clock (External 32kHz crystal) 并在应用中增加了如下接口代码Code: Select all #include "esp_err.h" #include "esp_pm.h" esp_pm_config_esp32_t pm_config = { .max_freq_mhz = 80, // e.g. 80, 160, 240 .min_freq_mhz = 10, // e.g. 40 .light_sleep_enable = true, // enable light sleep }; ESP_ERROR_CHECK( esp_pm_configure(&pm_config) ); 将程序烧录至开发版,用手机APP连接开发板蓝牙后,测得最小电流为700ua,最大电流为1.2ma,在这之间不断跳动。 另外有如下几个参数也在原有的example上做了修改: Code: Select all static esp_ble_adv_params_t adv_params = { .adv_int_min =0x640, .adv_int_max = 0x640, .adv_type = ADV_TYPE_IND, .own_addr_type = BLE_ADDR_TYPE_PUBLIC, .channel_map = ADV_CHNL_ALL, .adv_filter_policy = ADV_FILTER_ALLOW_SCAN_ANY_CON_ANY, }; Code: Select all conn_params.latency = 0; conn_params.max_int = 0x300; // max_int = 0x20*1.25ms = 40ms conn_params.min_int = 0x10; // min_int = 0x10*1.25ms = 20ms conn_params.timeout = 400; // timeout = 400*10ms = 4000ms //start sent the update connection parameters to the peer device. esp_ble_gap_update_conn_params(&conn_params); 我的问题是如何使light-sleep 的功耗达到你们文档所说的130ua。使用的ESP_IDF版本是:V4.3 |
|
相关推荐
|
|
只有小组成员才能发言,加入小组>>
545浏览 6评论
457浏览 5评论
有没有办法在不使用混杂模式的情况下实现Wifi驱动程序接收缓冲区访问中断呢?
437浏览 5评论
441浏览 4评论
411浏览 4评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-22 06:46 , Processed in 0.713546 second(s), Total 76, Slave 59 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号