diff options
author | TianShuang Ke <QinYUN575@Gmail.com> | 2024-06-27 22:36:18 +0800 |
---|---|---|
committer | Angus Gratton <angus@redyak.com.au> | 2025-07-30 10:51:29 +1000 |
commit | ca9916968c06437fa39549b0995ceb811209f994 (patch) | |
tree | 8e1b5ef2e9ce7ae79e2137708cba0a28c791a7a9 /docs/esp32/quickref.rst | |
parent | 88cb6bc818546e7fe8b862c784e1e4a6b8a12b8a (diff) |
esp32: Add support for ESP32-C2 (aka ESP8684).
Includes:
esp32/esp32c2: Adapt to target chip ESP32C2.
esp32/esp32c2: Fix heap size is too small to enable Bluetooth.
Signed-off-by: TianShuangKe <qinyun575@gmail.com>
Signed-off-by: Angus Gratton <angus@redyak.com.au>
Diffstat (limited to 'docs/esp32/quickref.rst')
-rw-r--r-- | docs/esp32/quickref.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/esp32/quickref.rst b/docs/esp32/quickref.rst index c394414a7..49f546a17 100644 --- a/docs/esp32/quickref.rst +++ b/docs/esp32/quickref.rst @@ -802,6 +802,9 @@ The RMT is ESP32-specific and allows generation of accurate digital pulses with # The channel resolution is 100ns (1/(source_freq/clock_div)). r.write_pulses((1, 20, 2, 40), 0) # Send 0 for 100ns, 1 for 2000ns, 0 for 200ns, 1 for 4000ns +The ESP32-C2 family does not include any RMT peripheral, so this class is +unavailable on those SoCs. + OneWire driver -------------- |