由于编的固件data段太大了,报错:
I (88) boot: ## Label Usage Type ST Offset Length
I (95) boot: 0 nvs WiFi data 01 02 00009000 00006000
I (103) boot: 1 phy_init RF data 01 01 0000f000 00001000
I (110) boot: 2 factory factory app 00 00 00010000 00520000
I (118) boot: 3 secadb Unknown data 01 82 00530000 000c0000 ...
Search found 4 matches
- Tue Jan 21, 2020 7:58 am
- Forum: ESP-IDF 中文讨论版
- Topic: esp-idf 报 bootloader_flash: bootloader_mmap excess size 3524e8
- Replies: 0
- Views: 3750
- Mon Dec 23, 2019 8:59 am
- Forum: ESP-ADF 中文讨论版
- Topic: esp-adf esp_audio_play()播放https异常
- Replies: 4
- Views: 16396
Re: esp-adf esp_audio_play()播放https异常
有人遇到esp_audio_play()播放https异常的情况吗?用最新的ADF
- Fri Dec 20, 2019 8:46 am
- Forum: ESP-ADF 中文讨论版
- Topic: i2s_stream.c有需要改进的地方(不判断返回值导致reboot)
- Replies: 1
- Views: 9906
i2s_stream.c有需要改进的地方(不判断返回值导致reboot)
audio_element_handle_t i2s_stream_init(i2s_stream_cfg_t *config);函数在调用i2s_driver_install()时未判断返回值,在i2s驱动安装失败时,后面的程序执行导致reboot!!!!
代码中我自己添加了保护:
//modify by li begin 2019/11/13
if(i2s_driver_install(i2s->config.i2s_port, &i2s->config.i2s_config, 0, NULL) != ESP_OK){
audio_free(i2s);
return NULL ...
代码中我自己添加了保护:
//modify by li begin 2019/11/13
if(i2s_driver_install(i2s->config.i2s_port, &i2s->config.i2s_config, 0, NULL) != ESP_OK){
audio_free(i2s);
return NULL ...
- Fri Dec 20, 2019 8:40 am
- Forum: ESP-ADF 中文讨论版
- Topic: esp-adf esp_audio_play()播放https异常
- Replies: 4
- Views: 16396
esp-adf esp_audio_play()播放https异常
esp_audio.h文件的接口说明是支持HTTP和HTTPs的,但是我测试只有HTTP能正常
有人遇到相同的问题吗?
esp_audio.h头文件接口说明如下:
/**
* @brief Play the given uri
*
* The esp_audio_play have follow activity, setup inputstream, outputstream and codec by uri, start all of them.
* There is a rule that esp_audio will select input stream, codec ...
有人遇到相同的问题吗?
esp_audio.h头文件接口说明如下:
/**
* @brief Play the given uri
*
* The esp_audio_play have follow activity, setup inputstream, outputstream and codec by uri, start all of them.
* There is a rule that esp_audio will select input stream, codec ...