Documentation: add gpio defconfig to esp32p4-tab5 board
Some checks are pending
Build Documentation / build-html (push) Waiting to run
MemBrowse Memory Report / changes-filter (push) Waiting to run
MemBrowse Memory Report / load-targets (push) Waiting to run
MemBrowse Memory Report / identical (push) Blocked by required conditions
MemBrowse Memory Report / analyze (push) Blocked by required conditions

Adds documentation for the GPIO defconfig on esp32p4-tab5 board.

Signed-off-by: Filipe Cavalcanti <filipe.cavalcanti@espressif.com>
This commit is contained in:
Filipe Cavalcanti 2026-08-25 14:30:40 -03:00 committed by Xiang Xiao
parent edf7c1de6a
commit 6f69891ded

View file

@ -143,6 +143,24 @@ is printed because the upstream default targets rev >= 3.0.
Configurations
==============
gpio
----
This is a test for the GPIO driver. It uses GPIO2 as output and
GPIO3 as an interrupt pin.
At the nsh, we can turn the outputs on and off with the following::
nsh> gpio -o 1 /dev/gpio0
nsh> gpio -o 0 /dev/gpio0
We can use the interrupt pin to send a signal when the interrupt fires::
nsh> gpio -w 1 /dev/gpio1
The pin is configured as a rising edge interrupt, so after issuing the
above command, connect it to 3.3V.
lvgl_demo
---------