Search found 290 matches

by ESP_morris
Tue May 07, 2019 9:24 am
Forum: ESP-IDF 中文讨论版
Topic: 这是什么问题 请教一下
Replies: 3
Views: 7949

Re: 这是什么问题 请教一下

heibaozi wrote:
Mon Apr 15, 2019 1:56 pm
ESP_morris wrote:
Mon Apr 15, 2019 3:18 am
非常感谢提交这个问题。这个example好像是已经很长时间没有更新过了,在最新的master上确实存在问题,我们会尽快修复。
我现在想用这个技术做一个产品,在iot里比较有竞争力 希望贵公司能尽快更新 感谢
感谢支持!参考此处,看看能够解决您的问题。 viewtopic.php?f=2&t=10268
by ESP_morris
Tue May 07, 2019 2:13 am
Forum: General Discussion
Topic: eth2wifi sample code
Replies: 3
Views: 5949

Re: eth2wifi sample code

I tested this sample with IDF version 3.1.4 and it works as it should. I still can not say why it is NOT working with version 3.2. I believe it is worth finding out what it is in version 3.2 that causes this problem. Sorry for the delay reply and thanks a lot for reporting this issue. We will figur...
by ESP_morris
Mon Apr 15, 2019 3:18 am
Forum: ESP-IDF 中文讨论版
Topic: 这是什么问题 请教一下
Replies: 3
Views: 7949

Re: 这是什么问题 请教一下

非常感谢提交这个问题。这个example好像是已经很长时间没有更新过了,在最新的master上确实存在问题,我们会尽快修复。
by ESP_morris
Wed Apr 03, 2019 9:03 am
Forum: ESP-IDF 中文讨论版
Topic: DMA
Replies: 1
Views: 6061

Re: DMA

建议先阅读相关API参考手册
https://docs.espressif.com/projects/esp ... aster.html
by ESP_morris
Wed Mar 27, 2019 11:12 am
Forum: ESP-IDF 中文讨论版
Topic: esp-idf\examples\system\himem编译报错
Replies: 6
Views: 13181

Re: esp-idf\examples\system\himem编译报错

xixixixi wrote:
Wed Mar 27, 2019 10:01 am
external ram是8M,分配内存时malloc和heap_caps_malloc能否从8M中分配了空间?还是只能分配其中的4M?
一定要用esp_himem_alloc这个才能分配另外的4M吗?
是这样的,所以一般建议用来存放音频图片等“大”数据。传统的malloc方式只能从低4MiB空间分配内存。

FYI: https://docs.espressif.com/projects/esp ... himem.html
by ESP_morris
Wed Mar 27, 2019 11:12 am
Forum: ESP-IDF 中文讨论版
Topic: esp-idf\examples\system\himem编译报错
Replies: 6
Views: 13181

Re: esp-idf\examples\system\himem编译报错

xixixixi wrote:
Wed Mar 27, 2019 10:01 am
external ram是8M,分配内存时malloc和heap_caps_malloc能否从8M中分配了空间?还是只能分配其中的4M?
一定要用esp_himem_alloc这个才能分配另外的4M吗?
是这样的,所以一般建议用来存放音频图片等“大”数据。传统的malloc方式只能从低4MiB空间分配内存。

FYI: https://docs.espressif.com/projects/esp ... himem.html
by ESP_morris
Wed Mar 27, 2019 8:03 am
Forum: ESP-IDF 中文讨论版
Topic: esp-idf\examples\system\himem编译报错
Replies: 6
Views: 13181

Re: esp-idf\examples\system\himem编译报错

xixixixi wrote:
Wed Mar 27, 2019 6:55 am
怎么查看idf的版本号?
git describe 可以查看版本。
我在我本地按照你的说明也执行了一遍,并没有报这个错误。 make clean后再make还是会出错吗?
by ESP_morris
Mon Mar 25, 2019 8:30 am
Forum: ESP-IDF 中文讨论版
Topic: esp-idf\examples\system\himem编译报错
Replies: 6
Views: 13181

Re: esp-idf\examples\system\himem编译报错

你好,我这边编译一切正常,暂时无法复现出你的问题。能否告知你当前使用的IDF版本?操作系统?编译系统(make还是cmake)。如果你使用的IDF版本比较旧可能会出现这种问题(因为himem功能推出才半年不到,有些API在老的IDF中可能不存在)。
by ESP_morris
Mon Mar 25, 2019 2:58 am
Forum: ESP-IDF 中文讨论版
Topic: ESP-WROVER-KIT-VB lcd开发问题
Replies: 1
Views: 4742

Re: ESP-WROVER-KIT-VB lcd开发问题

你好,ESP32 GUI开发有很多demo。

https://github.com/espressif/esp-idf/tr ... spi_master -- 基本的使用SPI操作显示屏的demo

https://github.com/espressif/esp-iot-so ... amples/hmi -- 基于GUI渲染引擎的demo