/jetsonNanoRegisterAccess

Jetson Nano direct hardware register access

Primary LanguageC++GNU General Public License v3.0GPL-3.0

jetsonNanoRegisterAccess

Jetson Nano direct hardware register access.

Introduction

This is a library for accessing peripherals to the ARM A57 core. There are two methods of doing this.

  1. The first method is using the file system method (/sys/class/gpio). This method isn't fast, and not the focus of this repository but, I will link sources to it because it is fairly uncomplicated and could be usefull to someone in the future. The following links are regarding this method:

  2. The second method is via the directly accessing the registers. This method is faster because it skips the file system access overhead, but is much more involved. This method is the primary focus of this repository. The following are links which I deemed useful in this endevor:

Copyright

jetsonNanoRegisterAccess. Copyright (C) Matthew Hardenburgh 2021. All rights reserved. mdhardenburgh@protonmail.com

Licensing

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

Disclamer

As stated in the section titled "licensing" above, this software is provided without any warranty. In addition, the public interfaces may change without warning at any time. This means I am not responsible for permentently bricking your jetson, getting you fired or causing a thermonuclear apocolypse. While I have done my best to release a product that is of quality, it falls to be YOUR reseponsiblity to vet the code's suitability and verify its operation.