hi all
I want to set xavier agx gpio pin <gpio06 ,PAA.05,CAN0_EN> and <gpio21 ,PA.00,DAP6_SCLK> as interrupt pin
i want to get this event to do callback function.
I reference GitHub - NVIDIA/jetson-gpio: A Python library that enables the use of Jetson's GPIOs
the sample code as below:
import Jetson.GPIO as GPIO
def my_callback(channel):
print(“GPIO interrupt test”)
GPIO.setmode(GPIO.TEGRA_SOC)
GPIO.setup(6,GPIO.IN)
GPIO.add_event_detect(6,GPIO.RISING,callback=my_callback)
while True:
pass
I want to know how to config
GPIO.setmode(GPIO.TEGRA_SOC) ? 6?
GPIO.setup(6,GPIO.IN)? 6?
any gpio pin can use this way as interrupt?