
Search found 19 matches
- Mon Nov 16, 2020 1:50 am
- Forum: General Discussion
- Topic: Happy 5th anniversary everyone 大家五週年快樂
- Replies: 5
- Views: 3712
- Thu Jun 22, 2017 11:54 am
- Forum: General Discussion
- Topic: WROOM32 v1.0 vs v1.1 different trace antenna layout
- Replies: 5
- Views: 4433
Re: WROOM32 v1.0 vs v1.1 different trace antenna layout
Sorry to make you confuse. ESP-WROOM-32 provided by sales department now is v1.0. v1.1 is a better design. If you want to design your own module, you can use this reference design. Since v1.0 has been mass produced and has gained many certifications, we have no plan to MP v1.1 version again and will...
- Thu Dec 01, 2016 7:41 am
- Forum: News
- Topic: ESP-IDF 1.0 Release plan
- Replies: 59
- Views: 56658
Re: ESP-IDF 1.0 Release plan
Sorry, the release is delayed to this weekend.
We are still working on it. Last testing.
We are still working on it. Last testing.
- Sun Apr 10, 2016 5:42 am
- Forum: General Discussion
- Topic: ESP32 Price
- Replies: 17
- Views: 33217
Re: ESP32 Price
The public price of ESP32 is not decided yet. It is ESP31B that we have once provided to those beta testers. We have stopped providing ESP31B, since even Espressif does not have stock now. So no one could use real ESP32 to have FCC report before July except ESPRESSIF. Thank you for the information t...
- Thu Feb 11, 2016 4:24 am
- Forum: General Discussion
- Topic: Evaluation of ESP32
- Replies: 2
- Views: 4124
Re: Evaluation of ESP32
Sorry, our beta tester program has closed.
The chip will be in mass production soon in March. And you will find it on market during Q2.
The chip will be in mass production soon in March. And you will find it on market during Q2.
- Tue Dec 29, 2015 12:17 pm
- Forum: General Discussion
- Topic: ESP32是一款什么样的芯片?和ESP8266有什么关联和区别
- Replies: 2
- Views: 17807
Re: ESP32是一款什么样的芯片?和ESP8266有什么关联和区别
ESP8266 是单核 Tensilica L106 (32位MCU)的Wi-Fi芯片,主频最高可达160MHz。
ESP32 是双核Tensilica L108 (32 位MCU)的Wi-Fi芯片,主频更高可达250MHz,性能更强,内存更大有400KB SRAM。另外还集成了蓝牙BLE。
由于ESP32的MCU性能更强,内存更大,可以处理包括音频、视频在内的更复杂Wi-Fi应用。还可以应用在需要蓝牙和Wi-Fi共存的IOT场景中。
ESP32 是双核Tensilica L108 (32 位MCU)的Wi-Fi芯片,主频更高可达250MHz,性能更强,内存更大有400KB SRAM。另外还集成了蓝牙BLE。
由于ESP32的MCU性能更强,内存更大,可以处理包括音频、视频在内的更复杂Wi-Fi应用。还可以应用在需要蓝牙和Wi-Fi共存的IOT场景中。
- Fri Dec 25, 2015 6:40 am
- Forum: General Discussion
- Topic: Merry Christmas!
- Replies: 10
- Views: 10393
Merry Christmas!

- Fri Dec 25, 2015 6:33 am
- Forum: General Discussion
- Topic: Little Boy crying under Christmas tree
- Replies: 7
- Views: 9457
Re: Little Boy crying under Christmas tree
Sorry, there are so little beta samples to meet followers' need.
We have arranged new production. Maybe you will not miss it in Chinese New Year.
We have arranged new production. Maybe you will not miss it in Chinese New Year.
- Thu Dec 17, 2015 1:32 pm
- Forum: General Discussion
- Topic: Translation Help
- Replies: 8
- Views: 8319
Re: Translation Help
p32
2. CPU响应中断时,通过查询中断控制模块判断是哪一个外设产生了中断
当 CPU 的中断源上只接有一个外设中断的时候,不需要通过查询判断是哪一个外设产生了中断。 但当多个外设接入同一个 CPU 中断源时,则需要先判断是哪一个外设产生的中断。
查询方法:可通过读取中断控制器的寄存器,获知哪个外设产生了中断。
这两个寄存器与外设中断的对应关系如下。
除此方法以外还可逐个查询各个外设内的寄存器,以判断哪个外设产生了中断。
2. CPU响应中断时,通过查询中断控制模块判断是哪一个外设产生了中断
当 CPU 的中断源上只接有一个外设中断的时候,不需要通过查询判断是哪一个外设产生了中断。 但当多个外设接入同一个 CPU 中断源时,则需要先判断是哪一个外设产生的中断。
查询方法:可通过读取中断控制器的寄存器,获知哪个外设产生了中断。
这两个寄存器与外设中断的对应关系如下。
除此方法以外还可逐个查询各个外设内的寄存器,以判断哪个外设产生了中断。
- Thu Dec 17, 2015 1:30 pm
- Forum: General Discussion
- Topic: Translation Help
- Replies: 8
- Views: 8319
Re: Translation Help
p31 1. 配置外设产 的中断 某 个 CPU 外部中断源 每一个外设中断都有一个对应的寄存器,将此寄存器设置为对应的 CPU 中断源序号,就可以将此外设配置到 CPU 对应中断源上。 函数原型如下: INTR_MAP_REG_A :外设中断对应的配置寄存器。 PRODPORT_INTR_MAP_0 :外设中断对应配置位在的配置寄存器中的位置。 xxx :CPU 中断源序号。 ‣ xxx 若为 6、7、15、16、29 时,表示外设中断并未配置到 CPU 任 中断源上。 ‣ xxx 不为 6、7、15、16、29 时,表示外设中断配置到了 CPU 对应中断源上。 配置寄存器名称、配置位名称与...