Search found 3 matches
- Thu Oct 31, 2019 7:42 am
- Forum: ESP-ADF
- Topic: avrcp control
- Replies: 1
- Views: 4326
Re: avrcp control
The ADF use the release/3.2 IDF, and this version can't support these functions. If you need it, you can use IDF release/4.0 to develop it.
- Tue Oct 08, 2019 2:24 am
- Forum: ESP-ADF 中文讨论版
- Topic: ESP32 ADF连接WIFI的同时,播放蓝牙音乐死机问题
- Replies: 3
- Views: 12356
Re: ESP32 ADF连接WIFI的同时,播放蓝牙音乐死机问题
1. reboot看起来是core0 wdt timeout了。可以通过menuconfige esp32-specific->task watchdog timeout period的时间,默认是5s,可以改为8s。还有wifi和bt并存,可以将bt放到core1上,在menuconfig bluetooth里面,将controller和bluedroid都放到core1上面。 2. 异常断开,原因会有很多,需要给出断开时候的log才能判断。 3 .断开后连不上,可以检查下你断开时候的处理,需要esp_bt_gap_set_scan_mode(ESP_BT_SCAN_MODE_CONNECT...
- Tue Jun 04, 2019 2:37 am
- Forum: ESP-ADF 中文讨论版
- Topic: 手机搜索不了蓝牙设备
- Replies: 3
- Views: 7544
Re: 手机搜索不了蓝牙设备
看了下log, [0;31mE (284) BLUETOOTH_SERVICE: /root/esp/esp-adf/components/audio_service/bluetooth_service.c:435 (bluetooth_service_start): enable controller failed[0m 这里controller没有enable成功必然是搜索不到的。 请到code中确认下是否是设置的ESP_BT_MODE_CLASSIC_BT,如果是,再到menuconfig中bluetooth->bluetooth controller->bluetooth contro...