LoginSignup
0
0

More than 5 years have passed since last update.

[ESP32]Dual Coreってどうなの? その1

Posted at

image.png

ESP32には三つのプロセッサーがあります。

Core & Memoryというブロックに二つのプロセッサーがあり、自由に使うことができます。
image.png

RTCにCo-processorが1個あってまとめて、3個になります。

image.png

xPortGetCoreIDで確認してみよう。

getCoreId.cpp

  Serial.print("setup() running on core ");
  Serial.println(xPortGetCoreID());

image.png

参考

  1. https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/system/freertos.html
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0