I have a jetson tx2 and i only know a little C programming.
i have some ideas for programs using the onboard camera tha comes with the carrier board. Id like to do some real time video analytics for flight data.
How is a usual set up for making programs for tx2? develop soley on tx2 or host computer requiered?
id like to hook up sensors to the tx2, how do i get readings and control pins?
my Jetson codename is Nvidia quill
P.S. I tried following Hello automatic addison tutorial for making a c program on jetson. but when i try to debug the compiled file it says permission denied? what is going on?
Incidentally, if you saw permission denied, then youβd have to tell us which command did that, and who you were logged in at as at the time (actually, login name doesnβt matter too much, but the question is whether you prefix the command with βsudoβ). Generally, you can find who you are logged in as with βwhoamiβ, and you can do this to see what the program permissions are (Iβm pretending the program name is βHelloWorldβ):
ls -l /where/ever/that/program/is/HelloWorld
If the program uses the GPU, then it might be relevant to know if your user is in group βvideoβ. You can run this command to see what groups your user is in: groups
(GPU usually requires group βvideoβ, and serial I/O usually requires group βdialoutβ; this, plus the actual permissions of the program, would probably tell you everything about why the program works versus fails from permission denied)