may I know which JetPack release you’re using?
=> R32 (release), REVISION: 7.1
had you also refer to developer guide for identify the GPIO numbers.
=> yes. I have refered to Jetson_Xavier_NX_Pinmux_Configuration_Template_v1.06.xlsm
you should able to controls these two pins via sysfs. GPIO3_PY.00 = ((24 * 8) + 0) + 288 = 480 GPIO3_PY.02 = ((24 * 8) + 2) + 288 = 482
please enter the location of the GPIOs, /sys/class/gpio/
you should generate gpio480 name with… # echo 480 > /sys/class/gpio/export
after that, you’ll be able to enable the GPIO for controlling. $ cd /sys/class/gpio/gpio480 $ echo out > direction && echo 1 > value