Skip to content

A straightforward C/C++ library to interface with the NVIDIA Jetson TX2 Development Kit GPIO pins.

License

Notifications You must be signed in to change notification settings

jerrymhlee/jetsonTX2GPIO

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jetsonTX2GPIO

A straightforward C/C++ library to interface with the NVIDIA Jetson TX2 Development Kit GPIO pins.

Modified based on https://github.com/jetsonhacks/jetsonTX1GPIO

Based on Software by RidgeRun https://developer.ridgerun.com/wiki/index.php/Gpio-int-test.c

  • Copyright (c) 2011, RidgeRun
  • All rights reserved.

and ideas from Derek Malloy Copyright (c) 2012 https://github.com/derekmolloy/beaglebone

exampleGPIApp.cpp describes a simple usage case using a tactile button and LED as input and output.

Description

To add more GPIO pins, modify jetsonGPIO.h and add pin numbers you want.

  • Example: setup and initialize GPIO388 (Pin37) as output pin on TX2:
/* To initialize */
jetsonTX2GPIONumber LEDControlPin = gpio388; 
gpioExport(LEDControlPin);
gpioSetDirection(LEDControlPin,outputPin);

/* To control pin high or low  */
gpioSetValue(LEDControlPin, on);     //Pull high
gpioSetValue(LEDControlPin, off);    //Pull low

That's it, very easy. If you like to use C/C++ to control GPIO Pin, just include "jetsonGPIO.h" in the cpp file.

About

A straightforward C/C++ library to interface with the NVIDIA Jetson TX2 Development Kit GPIO pins.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages