-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jetson Orin Nano: cannot find GPIO chip 2200000.gpio #117
Comments
I noticed that this library looks into 2 folders for the GPIO chip ( |
@pintarj I am having same issue, are you on Jetpack 6 ? Were you able to solve after adding 3rd path ? |
Any updates? I encounter the same problem |
@anath93 I'm on Jetpack 6.0, yes. I did not found out a solution using this library, and after few days of no replies, I opted for migrating to another library. Specifically Rubberazer/JETGPIO. |
Thank you for the solution, did you install that library on AGX Orin ? or Nano ? |
@anath93 I'm running a Jetson Orin Nano. |
@pintarj Thank you ! I will try to fix this and keep this forum posted. |
Hopefully this helps someone on AGX Orin side, Option1 : Option 2: (Which I went with) Please refer to spreadsheet from jetson download for this to make sure weather pin is output or input or bidirectional and if you need to make changes please refer to pinmux section in manual #include <gpiod.h> class gpio_comms
}; |
Sorry for the late response. Did adding 3rd path to |
Looks like it doesn't solve the issue :
|
@avanmalleghem |
Any updates? I encounter the same problem on Orin Nano with Jetpack 6.0 |
Same issue as @davidpob99 |
@samehmohamed88 @davidpob99 Jetpack 6 has deprecated sysfs due to upstream kernel, you have 2 options. |
I'm porting a c++ project, that uses this library (v1.2.5), from Jetson Nano to an Jetson Orin Nano. The GPIO used to work on the Nano, but I'm having problems on the Orin. On the first
GPIO::setmode(...)
call I get this error:Latter i discovered that neither the sample code from this repository works on my Orin (I've tried with samples/simple_out.cpp). It produces the same error.
Not sure if problem is relative to this library, but I've tried NVIDIA/jetson-gpio and Rubberazer/JETGPIO on the same Orin and both works well.
The text was updated successfully, but these errors were encountered: