diff options
author | Andrew Leech <andrew.leech@planetinnovation.com.au> | 2023-06-26 11:53:28 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2024-10-09 23:29:38 +1100 |
commit | 6d799378bad4474e77ddb2fa2187ecd6e290e0ba (patch) | |
tree | 4613734f9e13dfe20fa538cec0486750373982f6 /docs/esp32 | |
parent | e5eeaa7df894b5062c189f5d8da44c67550cf43a (diff) | |
download | micropython-6d799378bad4474e77ddb2fa2187ecd6e290e0ba.tar.gz micropython-6d799378bad4474e77ddb2fa2187ecd6e290e0ba.zip |
esp32: Add support for esp32c6.
This commit adds general support for ESP32-C6 SoCs.
Signed-off-by: Andrew Leech <andrew@alelec.net>
Diffstat (limited to 'docs/esp32')
-rw-r--r-- | docs/esp32/quickref.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/esp32/quickref.rst b/docs/esp32/quickref.rst index 3d3fbe0b1a..3ab4e8f5ec 100644 --- a/docs/esp32/quickref.rst +++ b/docs/esp32/quickref.rst @@ -18,7 +18,7 @@ working with this board it may be useful to get an overview of the microcontroll general.rst tutorial/index.rst -Note that there are several varieties of ESP32 -- ESP32, ESP32C3, ESP32S2, ESP32S3 -- +Note that there are several varieties of ESP32 -- ESP32, ESP32C3, ESP32C6, ESP32S2, ESP32S3 -- supported by MicroPython, with some differences in functionality between them. Installing MicroPython @@ -61,13 +61,13 @@ The :mod:`esp32` module:: import esp32 esp32.raw_temperature() # read the internal temperature of the MCU, in Fahrenheit - esp32.ULP() # access to the Ultra-Low-Power Co-processor, not on ESP32C3 + esp32.ULP() # access to the Ultra-Low-Power Co-processor, not on ESP32C3/C6 Note that the temperature sensor in the ESP32 will typically read higher than ambient due to the IC getting warm while it runs. This effect can be minimised by reading the temperature sensor immediately after waking up from sleep. -ESP32C3, ESP32S2, and ESP32S3 also have an internal temperature sensor available. +ESP32C3, ESP32C6, ESP32S2, and ESP32S3 also have an internal temperature sensor available. It is implemented a bit differently to the ESP32 and returns the temperature in Celsius:: |