I am trying to use GPIO1_IO11 as a digital output.
Here are the commands I using in kernel space:
echo 11 > /sys/class/gpio/export
echo out > /sys/class/gpio/gpio11/direction
echo 0 > /sys/class/gpio/gpio11/value
The pin state is high no matter what.
I cat the files in /sys/class/gpio/gpio11/ and I don't see anything obviously wrong.
I have verified the pin is not being used by any other nodes in the device tree.
Has anyone ran into this before? Can anyone point me in the right direction to identify what I am doing wrong here?
Thanks