gpio.rst 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. GPIO & RTC GPIO
  2. ===============
  3. Overview
  4. --------
  5. .. only:: esp32
  6. The {IDF_TARGET_NAME} chip features 40 physical GPIO pads. Some GPIO pads cannot be used or do not have the corresponding pin on the chip package. For more details, see *{IDF_TARGET_NAME} Technical Reference Manual* > *IO MUX and GPIO Matrix (GPIO, IO_MUX)* [`PDF <{IDF_TARGET_TRM_EN_URL}#iomuxgpio>`__]. Each pad can be used as a general purpose I/O or can be connected to an internal peripheral signal.
  7. - Note that GPIO6-11 are usually used for SPI flash.
  8. - GPIO34-39 can only be set as input mode and do not have software pullup or pulldown functions.
  9. .. only:: esp32s2
  10. The {IDF_TARGET_NAME} chip features 43 physical GPIO pads. Some GPIO pads cannot be used or do not have the corresponding pin on the chip package. For more details, see *{IDF_TARGET_NAME} Technical Reference Manual* > *IO MUX and GPIO Matrix (GPIO, IO_MUX)* [`PDF <{IDF_TARGET_TRM_EN_URL}#iomuxgpio>`__]. Each pad can be used as a general purpose I/O or can be connected to an internal peripheral signal.
  11. - Note that GPIO26-32 are usually used for SPI flash.
  12. - GPIO46 is fixed to pull-down and is input only
  13. .. only:: esp32c3
  14. The {IDF_TARGET_NAME} chip features 22 physical GPIO pads. Some GPIO pads cannot be used or do not have the corresponding pin on the chip package. For more details, see *{IDF_TARGET_NAME} Technical Reference Manual* > *IO MUX and GPIO Matrix (GPIO, IO_MUX)* [`PDF <{IDF_TARGET_TRM_EN_URL}#iomuxgpio>`__]. Each pad can be used as a general purpose I/O or can be connected to an internal peripheral signal.
  15. - Note that GPIO12-17 are usually used for SPI flash.
  16. - Note that GPIO 18 and 19 are used by USB-JTAG by default. In order to use them as GPIOs, USB-JTAG will be disabled by the drivers.
  17. - {IDF_TARGET_NAME} doesn't have separate "RTC GPIO" support. However, GPIO0-5 keep the rtc feature, which can be used for power-management and analog subsystem.
  18. .. only:: SOC_RTCIO_INPUT_OUTPUT_SUPPORTED
  19. There is also separate "RTC GPIO" support, which functions when GPIOs are routed to the "RTC" low-power and analog subsystem. These pin functions can be used when:
  20. .. list::
  21. - In deep sleep
  22. :SOC_ULP_SUPPORTED: - The :doc:`Ultra Low Power co-processor <../../api-guides/ulp>` is running
  23. - Analog functions such as ADC/DAC/etc are in use.
  24. Application Example
  25. -------------------
  26. GPIO output and input interrupt example: :example:`peripherals/gpio/generic_gpio`.
  27. API Reference - Normal GPIO
  28. ---------------------------
  29. .. include-build-file:: inc/gpio.inc
  30. .. include-build-file:: inc/gpio_types.inc
  31. .. only:: SOC_RTCIO_INPUT_OUTPUT_SUPPORTED
  32. API Reference - RTC GPIO
  33. ------------------------
  34. .. include-build-file:: inc/rtc_io.inc
  35. .. include-build-file:: inc/rtc_io_types.inc