Search found 8 matches

by fantasyhpu
Mon Sep 26, 2022 2:27 am
Forum: ESP-IDF 中文讨论版
Topic: 用arduino ide安装esp32工具包时,应该用这个链接
Replies: 0
Views: 1637

用arduino ide安装esp32工具包时,应该用这个链接

用arduino ide,包括arduino ide 2.0,安装esp32工具包时,不要用乐鑫官方给出的https://docs.espressif.com/projects/ard ... lling.html
2.png
2.png (32.46 KiB) Viewed 1637 times
该链接在国内网络会造成以下错误:
3.png
3.png (15.98 KiB) Viewed 1637 times
为解决这一问题,在国内,应该用这个链接:https://www.arduino.cn/package_esp32_index.json
这样,就能正常安装esp32工具包了:
1.png
1.png (11.23 KiB) Viewed 1637 times
by fantasyhpu
Mon Sep 19, 2022 12:16 pm
Forum: ESP-IDF 中文讨论版
Topic: esp32c3的USB-JTAG找不到
Replies: 8
Views: 6011

Re: esp32c3的USB-JTAG找不到

请问用C3的USB-JTAG调试时,USB转串口还能使用吗?例如JTAG单步调试时,遇见printf()串口打印语句,也能正常通过GPIO18、GPIO19,在串口调试助手里打印出数据吗?
1.png
1.png (10.26 KiB) Viewed 5284 times
by fantasyhpu
Mon Sep 19, 2022 12:59 am
Forum: ESP IoT Solution 中文讨论版
Topic: [已解决] 乐鑫ide
Replies: 5
Views: 18301

Re: [已解决] 乐鑫ide

vscode下安装platformio挺好用的,新建工程时可以选择arduino框架或ESP-IDF框架:
1.png
1.png (26.17 KiB) Viewed 4434 times
by fantasyhpu
Thu Sep 15, 2022 12:41 am
Forum: ESP-IDF 中文讨论版
Topic: 在arduino ide中安装esp32的arduino框架时的问题
Replies: 0
Views: 908

在arduino ide中安装esp32的arduino框架时的问题

根据乐鑫官方的链接:https://docs.espressif.com/projects/ard ... lling.html
2.png
2.png (32.6 KiB) Viewed 908 times
在arduino ide中安装esp32的arduino框架:
3.png
3.png (16.41 KiB) Viewed 908 times
arduino ide弹出错误:
1.png
1.png (15.98 KiB) Viewed 908 times
从图片提示可见乐鑫所给的链接没有数据。

请问乐鑫的开发人员能修正一下吗?

(建议在中文社区下面开一个esp32-arduino讨论板块)
by fantasyhpu
Wed Jul 27, 2022 1:38 am
Forum: 硬件问题讨论
Topic: 关于ESP32C3芯片射频设计问题
Replies: 3
Views: 5442

Re: 关于ESP32C3芯片射频设计问题

乐鑫这家公司的技术论坛很奇怪,回复率极低,看人下菜?
全靠大家瞎蒙了
by fantasyhpu
Wed Jul 20, 2022 12:41 pm
Forum: 硬件问题讨论
Topic: ESP-PROG的延时电路是否必须?
Replies: 1
Views: 1314

ESP-PROG的延时电路是否必须?

如下图所示,根据ESP-PROG文档: https://docs.espressif.com/projects/espressif-esp-iot-solution/zh_CN/latest/hw-reference/ESP-Prog_guide.html 的描述,该电路的作用是: 1.png 同时,根据ESP32-WROVER-KIT板子的电路图,该板自带一个板载jtag仿真器,它跟ESP-PROG一样,都是基于FT2232HL芯片: 2.png 但是,该板载jtag并没有延时电路。 请问乐鑫技术人员,ESP-PROG中的延时电路不是必须的吗? 我曾将这个问题通过乐鑫官网的技术支持网页发给乐...
by fantasyhpu
Mon May 02, 2022 1:50 am
Forum: ESP32 Arduino
Topic: An unexpected phenomenon about attachInterrupt()
Replies: 1
Views: 1161

Re: An unexpected phenomenon about attachInterrupt()

The attachment is the figure of circuit.
Image
by fantasyhpu
Fri Apr 29, 2022 8:55 am
Forum: ESP32 Arduino
Topic: An unexpected phenomenon about attachInterrupt()
Replies: 1
Views: 1161

An unexpected phenomenon about attachInterrupt()

Hello, there is a very simple arduino code which using a button attaching esp32 IO21: [img]C:\Users\admin\Desktop\111.svg[/img] const int keyPin=21;//change 21 to 2 when using arduino uno int num=0; boolean flag=false; void echo() { flag=true; num++; } void setup() { Serial.begin(9600); pinMode(keyP...